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_authorize | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/payment_authorize')
94 files changed, 16029 insertions, 0 deletions
diff --git a/addons/payment_authorize/__init__.py b/addons/payment_authorize/__init__.py new file mode 100644 index 00000000..6752d721 --- /dev/null +++ b/addons/payment_authorize/__init__.py @@ -0,0 +1,11 @@ +# -*- 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, 'authorize') + diff --git a/addons/payment_authorize/__manifest__.py b/addons/payment_authorize/__manifest__.py new file mode 100644 index 00000000..d7b2af44 --- /dev/null +++ b/addons/payment_authorize/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Authorize.Net Payment Acquirer', + 'category': 'Accounting/Payment Acquirers', + 'sequence': 350, + 'summary': 'Payment Acquirer: Authorize.net Implementation', + 'version': '1.0', + 'description': """Authorize.Net Payment Acquirer""", + 'depends': ['payment'], + 'data': [ + 'views/payment_views.xml', + 'views/payment_authorize_templates.xml', + 'data/payment_acquirer_data.xml', + ], + 'installable': True, + 'application': True, + 'post_init_hook': 'create_missing_journal_for_acquirers', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/addons/payment_authorize/controllers/__init__.py b/addons/payment_authorize/controllers/__init__.py new file mode 100644 index 00000000..65a8c120 --- /dev/null +++ b/addons/payment_authorize/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import main diff --git a/addons/payment_authorize/controllers/main.py b/addons/payment_authorize/controllers/main.py new file mode 100644 index 00000000..cf917adf --- /dev/null +++ b/addons/payment_authorize/controllers/main.py @@ -0,0 +1,85 @@ +# -*- coding: utf-8 -*- +import pprint +import logging +from werkzeug import urls, utils + +from odoo import http, _ +from odoo.http import request +from odoo.exceptions import ValidationError, UserError + +_logger = logging.getLogger(__name__) + + +class AuthorizeController(http.Controller): + _return_url = '/payment/authorize/return/' + _cancel_url = '/payment/authorize/cancel/' + + @http.route([ + '/payment/authorize/return/', + '/payment/authorize/cancel/', + ], type='http', auth='public', csrf=False) + def authorize_form_feedback(self, **post): + _logger.info('Authorize: entering form_feedback with post data %s', pprint.pformat(post)) + if post: + request.env['payment.transaction'].sudo().form_feedback(post, 'authorize') + base_url = request.env['ir.config_parameter'].sudo().get_param('web.base.url') + # Authorize.Net is expecting a response to the POST sent by their server. + # This response is in the form of a URL that Authorize.Net will pass on to the + # client's browser to redirect them to the desired location need javascript. + return request.render('payment_authorize.payment_authorize_redirect', { + 'return_url': urls.url_join(base_url, "/payment/process") + }) + + @http.route(['/payment/authorize/s2s/create_json_3ds'], type='json', auth='public', csrf=False) + def authorize_s2s_create_json_3ds(self, verify_validity=False, **kwargs): + token = False + acquirer = request.env['payment.acquirer'].browse(int(kwargs.get('acquirer_id'))) + + try: + if not kwargs.get('partner_id'): + kwargs = dict(kwargs, partner_id=request.env.user.partner_id.id) + token = acquirer.s2s_process(kwargs) + except ValidationError as e: + message = e.args[0] + if isinstance(message, dict) and 'missing_fields' in message: + if request.env.user._is_public(): + message = _("Please sign in to complete the payment.") + # update message if portal mode = b2b + if request.env['ir.config_parameter'].sudo().get_param('auth_signup.allow_uninvited', 'False').lower() == 'false': + message += _(" If you don't have any account, ask your salesperson to grant you a portal access. ") + else: + msg = _("The transaction cannot be processed because some contact details are missing or invalid: ") + message = msg + ', '.join(message['missing_fields']) + '. ' + message += _("Please complete your profile. ") + + return { + 'error': message + } + + if not token: + res = { + 'result': False, + } + return res + + res = { + 'result': True, + 'id': token.id, + 'short_name': token.short_name, + '3d_secure': False, + 'verified': True, #Authorize.net does a transaction type of Authorization Only + #As Authorize.net already verify this card, we do not verify this card again. + } + #token.validate() don't work with Authorize.net. + #Payments made via Authorize.net are settled and allowed to be refunded only on the next day. + #https://account.authorize.net/help/Miscellaneous/FAQ/Frequently_Asked_Questions.htm#Refund + #<quote>The original transaction that you wish to refund must have a status of Settled Successfully. + #You cannot issue refunds against unsettled, voided, declined or errored transactions.</quote> + return res + + @http.route(['/payment/authorize/s2s/create'], type='http', auth='public') + def authorize_s2s_create(self, **post): + acquirer_id = int(post.get('acquirer_id')) + acquirer = request.env['payment.acquirer'].browse(acquirer_id) + acquirer.s2s_process(post) + return utils.redirect("/payment/process") diff --git a/addons/payment_authorize/data/payment_acquirer_data.xml b/addons/payment_authorize/data/payment_acquirer_data.xml new file mode 100644 index 00000000..3f465665 --- /dev/null +++ b/addons/payment_authorize/data/payment_acquirer_data.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + + <record id="payment.payment_acquirer_authorize" model="payment.acquirer"> + <field name="name">Authorize.Net</field> + <field name="image_128" type="base64" file="payment_authorize/static/src/img/authorize_icon.png"/> + <field name="provider">authorize</field> + <field name="company_id" ref="base.main_company"/> + <field name="view_template_id" ref="authorize_form"/> + <field name="registration_view_template_id" ref="authorize_s2s_form"/> + </record> + + </data> +</odoo> diff --git a/addons/payment_authorize/i18n/af.po b/addons/payment_authorize/i18n/af.po new file mode 100644 index 00000000..7780cf37 --- /dev/null +++ b/addons/payment_authorize/i18n/af.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/am.po b/addons/payment_authorize/i18n/am.po new file mode 100644 index 00000000..7cefd883 --- /dev/null +++ b/addons/payment_authorize/i18n/am.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/ar.po b/addons/payment_authorize/i18n/ar.po new file mode 100644 index 00000000..c10d76a0 --- /dev/null +++ b/addons/payment_authorize/i18n/ar.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "معرف تسجيل الدخول لواجهة برمجة التطبيقات API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "مفتاح معاملة واجهة برمجة التطبيقات API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "معرف ملف Authorize.net الشخصي" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: البيانات المستلمة ينقصها رقم إشارة (%s) أو trans_id (%s) أو بصمة " +"(%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "كيفية تلقي أموال من خلال Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"تم العثور على رمز سري غير صالح: حساب Authorize مفقود. برجاء التأكد من صحة " +"رقم إشارة معالج كلمة السر." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "معالج السداد" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "كلمة سر السداد" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "برجاء إكمال ملفك الشخصي. " + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "المزود" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "حفظ البطاقات" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "خطأ في السيرفر" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "فشلت عملية إنشاء حساب العميل الشخصي في Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"لم نتمكن من معالجة المعاملة لأن بعض تفاصيل الاتصال مفقودة أو غير صالحة: " + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"يحتوي هذا على رقم الإشارة الفريد الخاص بخليط الشريك ورمز السداد السري في " +"الواجهة الخلفية لـAuthorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"يسمح هذا الخيار للعملاء بحفظ بطاقاتك الائتمانية كرمز سري للسداد وإعادة " +"استخدامها في عمليات شراء لاحقة. إذا كنت تقدم خدمة الاشتراكات (فواتير " +"متكررة)، ستحتاج لتحصيل رسوم تلقائيًا عند إصدار فاتورة." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "تحذير" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "لا يمكننا إضافة طريقة السداد التي اخترتها حاليًا." diff --git a/addons/payment_authorize/i18n/az.po b/addons/payment_authorize/i18n/az.po new file mode 100644 index 00000000..161972a3 --- /dev/null +++ b/addons/payment_authorize/i18n/az.po @@ -0,0 +1,198 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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:21+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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/bg.po b/addons/payment_authorize/i18n/bg.po new file mode 100644 index 00000000..399b0823 --- /dev/null +++ b/addons/payment_authorize/i18n/bg.po @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "ИН за регистрация на Приложен програмен интерфейс - API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Транзакционен ключ за Приложен програмен итерфейс - API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ИН на профила Authorize.net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Упълномощете: получени данни с липсваща референция (%s) или trans_id (%s) " +"или пръстов отпечатък (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Обработчик на плащане" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Платежен токен" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Доставчик" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Сървърна грешка" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Неуспешно създаването на потребителски профил в Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Това съдържа уникална референция за този контрагент/комбинация от токени за " +"плащане в бекенда Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/bn.po b/addons/payment_authorize/i18n/bn.po new file mode 100644 index 00000000..9b933aae --- /dev/null +++ b/addons/payment_authorize/i18n/bn.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2021 +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "পেমেন্ট অর্জিত" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "সতর্কীকরণ" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/bs.po b/addons/payment_authorize/i18n/bs.po new file mode 100644 index 00000000..59b36f76 --- /dev/null +++ b/addons/payment_authorize/i18n/bs.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token plaćanja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/addons/payment_authorize/i18n/ca.po b/addons/payment_authorize/i18n/ca.po new file mode 100644 index 00000000..62674a60 --- /dev/null +++ b/addons/payment_authorize/i18n/ca.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Lluís Dalmau <lluis.dalmau@guifi.net>, 2020 +# Martin Trigaux, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# jabelchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: jabelchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +" Si no teniu compte, demaneu al vostre comercial que us faciliti un accés al" +" portal. " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Identificador d'accés " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Clau de l'API de transacció" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ID perfil Authorize.net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: ha rebut les dades sense referència (%s), identificador (%s) o " +"empremta (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mètode de pagament" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token de pagament" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Proveïdor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Error del servidor" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "La creació del perfil de client a Authorize.NET ha fallat." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Això conté la referència exclusiva d'aquest token de partner/pagament al " +"backend d'Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Avís" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/ckb.po b/addons/payment_authorize/i18n/ckb.po new file mode 100644 index 00000000..02a8a8b9 --- /dev/null +++ b/addons/payment_authorize/i18n/ckb.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "پارەوەرگر" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "ئاگاداری" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/cs.po b/addons/payment_authorize/i18n/cs.po new file mode 100644 index 00000000..0daf1b8f --- /dev/null +++ b/addons/payment_authorize/i18n/cs.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Pokud nemáte žádný účet, požádejte svého prodejce o udělení přístupu na " +"portál." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API Client Key" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Transaction Key" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profile ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generovat klíč klienta" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Jak dostat zaplaceno přes Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Byl nalezen neplatný token: chybí profil autorizace. Ujistěte se, že token " +"obsahuje platný odkaz nabyvatele." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Platební brána" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Platební token" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Vyplňte prosím svůj profil." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Chcete-li dokončit platbu, přihlaste se." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Poskytovatel" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Uložit kartu" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Chyba serveru" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Vytvoření profilu zákazníka v Authorize.NET se nezdařilo." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Transakci nelze zpracovat, protože některé kontaktní údaje chybí nebo jsou " +"neplatné:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Toto obsahuje jedinečný odkaz pro tuto kombinaci tokenů partnera / plateb v " +"backendu Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Tato možnost umožňuje zákazníkům uložit kreditní kartu jako token platby a " +"znovu ji použít pro pozdější nákup. Pokud spravujete předplatné (opakující " +"se fakturace), musíte ji při vystavení faktury automaticky účtovat " +"zákazníkovi." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Nelze načíst klientský klíč, zkontrolujte správnost přihlašovacího a " +"transakčního klíče API." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Varování" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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ší platební podmínku." diff --git a/addons/payment_authorize/i18n/da.po b/addons/payment_authorize/i18n/da.po new file mode 100644 index 00000000..f9e2923f --- /dev/null +++ b/addons/payment_authorize/i18n/da.po @@ -0,0 +1,234 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Mads Søndergaard, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Mads Søndergaard, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Hvis du ikke har nogen konto, skal du spørge din salgsperson om at tildele " +"dig portal adgang." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API Klient nøgle" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Log ind ID" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API Signatur nøgle" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API transaktionsnøgle" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net fejl:\n" +"Kode: %s\n" +"Besked: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profil ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: Modtag data med manglende reference (%s) eller trans_id (%s) " +"eller fingeraftryk (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generer klient nøgle" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Hvordan man bliver betalt med Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Ugyldig token fundet: Authorize profilen mangler. Tjek venligst at token'en " +"har en gyldig modtager reference." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsindløser" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Vær venlig at fuldføre din profil." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Vær venlig at log in for at fuldføre betalingen." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Udbyder" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Gem kort" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Server fejl" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Kundeprofil oprettelsen i Authorize.net mislykkedes." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Transaktionen kunne ikke behandles, fordi visse kontakt detaljer mangler, " +"eller er ugyldige:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Dette indeholder den unikke reference for denne partner/betalings token " +"kombination i Authorize.net back-end'en" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Denne indstilling gør det muligt for kunder, at gemme deres kreditkort " +"oplysninger, som en betalings token, og genbruge den ved et senere køb. Hvis" +" du administrere abonnementer (gentagende fakturering), behøver du den for " +"automatisk at påregne kunden når du udsteder fakturaen." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Kunne ikke hente Klient nøgle, tjek at API Login og transaktion nøgle er " +"korrekte." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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 i øjeblikket ikke i stand til at tilføje din betalingsmetode." diff --git a/addons/payment_authorize/i18n/de.po b/addons/payment_authorize/i18n/de.po new file mode 100644 index 00000000..388625d6 --- /dev/null +++ b/addons/payment_authorize/i18n/de.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Andreas Perhab <a.perhab@wtioit.at>, 2020 +# Jérôme JEK <jek@odoo.com>, 2020 +# Chris Egal <sodaswed@web.de>, 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: Chris Egal <sodaswed@web.de>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Wenn Sie noch kein Konto haben, bitten Sie Ihren Verkäufer, Ihnen einen " +"Portalzugang zu gewähren." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Anmeldungs Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Transaction Key" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net Fehler:\n" +"Code: %s\n" +"Nachricht: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profil-ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Autorisieren: empfangene Daten mit fehlender Referenz (%s) oder trans_id " +"(%s) oder Fingerabdruck (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Client-Schlüssel generieren" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Wie Sie mit Authorize.Net bezahlt werden" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Ungültiges Token gefunden: Das Berechtigungsprofil fehlt. Stellen Sie " +"sicher, dass das Token eine gültige Erwerberreferenz hat." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Zahlungsanbieter" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Zahlungs-Token" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Bitte vervollständigen Sie Ihr Profil." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Bitte melden Sie sich an, um die Zahlung abzuschließen." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Anbieter" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Karten speichern" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Server Fehler" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Die Erstellung des Kundenprofils bei Autorize.NET ist fehlgeschlagen." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Der Vorgang kann nicht abgeschlossen werden, weil Details fehlen oder " +"fehlerhaft sind:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "Dies enthält die eindeutige Referenz" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Diese Option ermöglicht es Kunden, Ihre Kreditkarte als Zahlungs-Token zu " +"speichern und sie für eine spätere Zahlung wiederzuverwenden. Wenn Sie " +"Abonnements verwalten (wiederkehrende Rechnungsstellung), müssen Sie dem " +"Kunden automatisch etwas berechnen, wenn Sie eine Rechnung ausstellen." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Client-Schlüssel kann nicht abgeholt werden, stellen Sie sicher, dass der " +"API-Login und der Transaktionsschlüssel korrekt sind." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Warnung" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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 Ihren Zahlweg momentan nicht einpflegen." diff --git a/addons/payment_authorize/i18n/el.po b/addons/payment_authorize/i18n/el.po new file mode 100644 index 00000000..582d2e09 --- /dev/null +++ b/addons/payment_authorize/i18n/el.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Transaction Key" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Αναγνωριστικό Προφίλ Authorize.net " + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: λήφθηκαν δεδομένα αλλά λείπει η αναφορά (%s) ή trans_id (%s) ή " +"fingerprint (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Πώς να πληρωθείτε με Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Διακριτικό Πληρωμής" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Αποθήκευση Καρτών" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Σφάλμα Διακομιστή" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Η δημιουργία του Προφίλ Πελάτη στο Authorize.NET απέτυχε." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Αυτό περιέχει τη μοναδική αναφορά αυτού του συνδυασμού αναγνωριστικών " +"συνεργάτη/πληρωμής στο σύστημα του Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Προσοχή" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/en_GB.po b/addons/payment_authorize/i18n/en_GB.po new file mode 100644 index 00000000..a0ae9bba --- /dev/null +++ b/addons/payment_authorize/i18n/en_GB.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/eo.po b/addons/payment_authorize/i18n/eo.po new file mode 100644 index 00000000..95ac8df0 --- /dev/null +++ b/addons/payment_authorize/i18n/eo.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/es.po b/addons/payment_authorize/i18n/es.po new file mode 100644 index 00000000..e0960f42 --- /dev/null +++ b/addons/payment_authorize/i18n/es.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +" Si no tienes cuenta, pídele a su comercial que te de acceso al portal." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "Clave de cliente API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "Id de inicio de sesión API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Clave de firma API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Clave de la transacción API " + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Error de Authorize.net:\n" +"Código: %s\n" +"Mensaje: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net perfil ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: datos recibidos sin referencia (%s) o trans_id (%s) o huella " +"digital (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generar clave de cliente" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Cómo recibir pagos con Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Se encontró un token no válido: falta el perfil de autorización. Por favor, " +"asegúrate de que el token tenga una referencia de comprador válida." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token de pago" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Por favor completa tu perfil." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Por favor, inicia sesión para completar el pago." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Guardar las tarjetas" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Error en el servidor" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Error en la creación del perfil de cliente en Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"La transacción no se puede procesar porque algunos detalles de contacto " +"faltan o no son válidos:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Esto contiene la única referencia para esta combinación de contacto/pago de " +"token en el backend de Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Esta opción permite a los clientes guardar su tarjeta de crédito como un " +"token de pago y reutilizarla para una compra posterior. Si administras las " +"suscripciones (facturación recurrente), necesitas que se le cobre " +"automáticamente al cliente cuando emita una factura." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"No se puede obtener la clave de cliente, asegúrate de que el inicio de " +"sesión de API y la clave de transacción sean correctos." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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." diff --git a/addons/payment_authorize/i18n/es_BO.po b/addons/payment_authorize/i18n/es_BO.po new file mode 100644 index 00000000..d49f52e0 --- /dev/null +++ b/addons/payment_authorize/i18n/es_BO.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_CL.po b/addons/payment_authorize/i18n/es_CL.po new file mode 100644 index 00000000..9f091b0b --- /dev/null +++ b/addons/payment_authorize/i18n/es_CL.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_CO.po b/addons/payment_authorize/i18n/es_CO.po new file mode 100644 index 00000000..9d10e137 --- /dev/null +++ b/addons/payment_authorize/i18n/es_CO.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_CR.po b/addons/payment_authorize/i18n/es_CR.po new file mode 100644 index 00000000..716c3860 --- /dev/null +++ b/addons/payment_authorize/i18n/es_CR.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_DO.po b/addons/payment_authorize/i18n/es_DO.po new file mode 100644 index 00000000..7e6e9b5b --- /dev/null +++ b/addons/payment_authorize/i18n/es_DO.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_EC.po b/addons/payment_authorize/i18n/es_EC.po new file mode 100644 index 00000000..768e0655 --- /dev/null +++ b/addons/payment_authorize/i18n/es_EC.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_MX.po b/addons/payment_authorize/i18n/es_MX.po new file mode 100644 index 00000000..e7dc38d0 --- /dev/null +++ b/addons/payment_authorize/i18n/es_MX.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +" Si no tiene cuenta, pídale a su comercial que le de acceso al portal." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "Clave de cliente API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "Id de inicio de sesión API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Clave de firma API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Clave de la transacción API " + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Error de Authorize.net:\n" +"Código: %s\n" +"Mensaje: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net perfil ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: datos recibidos sin referencia (%s) o trans_id (%s) o huella " +"digital (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generar clave de cliente" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Cómo recibir pagos con Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Se encontró un token no válido: falta el perfil de autorización. Por favor, " +"asegúrate de que el token tenga una referencia de comprador válida." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token de pago" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Por favor complete su perfil." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Por favor, inicie sesión para completar el pago." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Guardar las tarjetas" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Error en el servidor" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Error en la creación del perfil de cliente en Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"La transacción no se puede procesar porque algunos detalles de contacto " +"faltan o no son válidos:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Esto contiene la única referencia para esta combinación de contacto/pago de " +"token en el backend de Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Esta opción permite a los clientes guardar su tarjeta de crédito como un " +"token de pago y reutilizarla para una compra posterior. Si administra las " +"suscripciones (facturación recurrente), necesita que se le cobre " +"automáticamente al cliente cuando emita una factura." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"No se puede obtener la clave de cliente, asegúrate de que el inicio de " +"sesión de API y la clave de transacción sean correctos." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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." diff --git a/addons/payment_authorize/i18n/es_PA.po b/addons/payment_authorize/i18n/es_PA.po new file mode 100644 index 00000000..3101220f --- /dev/null +++ b/addons/payment_authorize/i18n/es_PA.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:16+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/" +"language/es_PA/)\n" +"Language: es_PA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model_terms:payment.acquirer,cancel_msg:payment_authorize.payment_acquirer_authorize +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "" + +#. module: payment_authorize +#: model_terms:payment.acquirer,done_msg:payment_authorize.payment_acquirer_authorize +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_authorize +#: model_terms:payment.acquirer,error_msg:payment_authorize.payment_acquirer_authorize +msgid "" +"<span><i>Error,</i> Please be aware that an error occurred during the " +"transaction. The order has been confirmed but won't be paid. Don't hesitate " +"to contact us if you have any questions on the status of your order.</span>" +msgstr "" + +#. module: payment_authorize +#: model_terms:payment.acquirer,pending_msg:payment_authorize.payment_acquirer_authorize +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:payment.acquirer,name:payment_authorize.payment_acquirer_authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "" +"How to configure your Authorize.Net account (look for Getting Started " +"Guide) ?" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_authorize +#: model_terms:payment.acquirer,pre_msg:payment_authorize.payment_acquirer_authorize +msgid "" +"You will be redirected to the Authorize website after clicking on the " +"payment button." +msgstr "" diff --git a/addons/payment_authorize/i18n/es_PE.po b/addons/payment_authorize/i18n/es_PE.po new file mode 100644 index 00000000..2d3483a9 --- /dev/null +++ b/addons/payment_authorize/i18n/es_PE.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_PY.po b/addons/payment_authorize/i18n/es_PY.po new file mode 100644 index 00000000..3d54d446 --- /dev/null +++ b/addons/payment_authorize/i18n/es_PY.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/es_VE.po b/addons/payment_authorize/i18n/es_VE.po new file mode 100644 index 00000000..ea19e3e0 --- /dev/null +++ b/addons/payment_authorize/i18n/es_VE.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/et.po b/addons/payment_authorize/i18n/et.po new file mode 100644 index 00000000..fc157616 --- /dev/null +++ b/addons/payment_authorize/i18n/et.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Triine Aavik <triine@avalah.ee>, 2020 +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Marek Pontus, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Martin Aavastik <martin@avalah.ee>, 2020\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Sümboolne makse" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Varustaja" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Salvesta kaardid" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Server Error" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Hoiatus" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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." diff --git a/addons/payment_authorize/i18n/eu.po b/addons/payment_authorize/i18n/eu.po new file mode 100644 index 00000000..fcd2c97f --- /dev/null +++ b/addons/payment_authorize/i18n/eu.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Hornitzailea " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Abisua" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/fa.po b/addons/payment_authorize/i18n/fa.po new file mode 100644 index 00000000..d5530a06 --- /dev/null +++ b/addons/payment_authorize/i18n/fa.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "شناسه" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "دریافت کننده پرداخت" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "توکن پرداخت" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "فراهمکننده" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "ذخیره کارتها" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "خطای سرور" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "هشدار" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/fi.po b/addons/payment_authorize/i18n/fi.po new file mode 100644 index 00000000..287bf78f --- /dev/null +++ b/addons/payment_authorize/i18n/fi.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Maksun vastaanottaja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Palveluntarjoaja" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Palvelinvirhe" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Varoitus" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/fo.po b/addons/payment_authorize/i18n/fo.po new file mode 100644 index 00000000..9351ddb7 --- /dev/null +++ b/addons/payment_authorize/i18n/fo.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/fr.po b/addons/payment_authorize/i18n/fr.po new file mode 100644 index 00000000..f49ba53c --- /dev/null +++ b/addons/payment_authorize/i18n/fr.po @@ -0,0 +1,237 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Alexandra Jubert <aju@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020 +# Pauline Thiry <pth@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Pauline Thiry <pth@odoo.com>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Si vous n'avez pas de compte, veuillez demander à votre vendeur de vous " +"donner un accès au portail." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "Clé Client API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "Identifiant API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Clé de Signature API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Clé de transaction API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Erreur Authorize.net :\n" +"Code : %s\n" +"Message : %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ID de profil Authorize.net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize : données reçues sans référence (%s), trans_id (%s) ou empreinte " +"(%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Générer Clé Client" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Comment se faire payer avec Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Jeton trouvé non valide : le profile Authorize est manquant. Veuillez vous " +"assurer que le jeton a une référence d'intermédiaire valide." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermédiaire de paiement" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Jeton de paiement" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Complétez votre profil s'il vous plaît." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Veuillez vous identifier pour finaliser le paiement." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Transporteur" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Enregistrer les cartes" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Erreur serveur" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "La création du profil client dans Authorize.Net a échoué." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"La transaction ne peut pas être traitée car certains détails de contact sont" +" manquants ou non valides:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Contient la référence unique pour cette combinaison partenaire/jeton de " +"paiement dans le backend Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Cette option permet aux clients d'enregistrer leur carte de crédit en tant " +"que moyen de paiement et de l'utiliser pour un achat ultérieur. Si vous " +"gérez des abonnements (facturation récurrente), vous en avez besoin pour " +"facturer automatiquement le client lorsque vous émettez une facture." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Impossible de récupérer la Clé Client, veuillez vous assurer que le Login " +"API et la Clé de Transaction sont corrects." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Avertissement" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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 pouvons ajouter votre méthode de paiement pour le moment." diff --git a/addons/payment_authorize/i18n/fr_CA.po b/addons/payment_authorize/i18n/fr_CA.po new file mode 100644 index 00000000..febe6038 --- /dev/null +++ b/addons/payment_authorize/i18n/fr_CA.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/gl.po b/addons/payment_authorize/i18n/gl.po new file mode 100644 index 00000000..d0b5456f --- /dev/null +++ b/addons/payment_authorize/i18n/gl.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/gu.po b/addons/payment_authorize/i18n/gu.po new file mode 100644 index 00000000..12e5adb1 --- /dev/null +++ b/addons/payment_authorize/i18n/gu.po @@ -0,0 +1,198 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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" +"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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/he.po b/addons/payment_authorize/i18n/he.po new file mode 100644 index 00000000..62612d7e --- /dev/null +++ b/addons/payment_authorize/i18n/he.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# שהאב חוסיין <shhab89@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Ofir Blum <ofir.blum@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: Ofir Blum <ofir.blum@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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ספק שירות תשלומים" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "אסימון תשלום" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "ספק" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "שמור כרטיסים" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "שגיאת שרת" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"אפשרות זו מאפשרת ללקוחות לשמור את כרטיס האשראי שלהם כאסימון תשלום ולעשות " +"שימוש חוזר בו לרכישה מאוחרת יותר. אם אתה מנהל מנויים (חיוב חוזר), אתה צריך " +"אותה כדי לחייב את הלקוח באופן אוטומטי בעת הנפקת חשבונית." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "אזהרה" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "איננו יכולים להוסיף את אמצעי התשלום שלך כרגע." diff --git a/addons/payment_authorize/i18n/hi.po b/addons/payment_authorize/i18n/hi.po new file mode 100644 index 00000000..d464e89d --- /dev/null +++ b/addons/payment_authorize/i18n/hi.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/hr.po b/addons/payment_authorize/i18n/hr.po new file mode 100644 index 00000000..b6951c93 --- /dev/null +++ b/addons/payment_authorize/i18n/hr.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# Bole <bole@dajmi5.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API ključ transakcije" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net ID Profila" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token plaćanja" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Spremi kartice" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Greška poslužitelja" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/hu.po b/addons/payment_authorize/i18n/hu.po new file mode 100644 index 00000000..dada6cb1 --- /dev/null +++ b/addons/payment_authorize/i18n/hu.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API bejelentkezési Id azonosító" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API tranzakciós kulcs" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net profil ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Fizetési szolgáltató" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Szolgáltató" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Szerverhiba" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Ez tartalmazza az egyedi hivatkozást ehhez a partner/fizetés token " +"kombinációhoz az Authorize.net háttérhez" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Figyelmeztetés" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/id.po b/addons/payment_authorize/i18n/id.po new file mode 100644 index 00000000..739c3994 --- /dev/null +++ b/addons/payment_authorize/i18n/id.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pemilik Tagihan" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Pemberi" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Kesalahan Server" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Peringatan" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/is.po b/addons/payment_authorize/i18n/is.po new file mode 100644 index 00000000..851eb47c --- /dev/null +++ b/addons/payment_authorize/i18n/is.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:21+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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/it.po b/addons/payment_authorize/i18n/it.po new file mode 100644 index 00000000..6b870854 --- /dev/null +++ b/addons/payment_authorize/i18n/it.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Se non si possiede un account, chiedere all'addetto vendite l'assegnazione " +"di un accesso al portale." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "Chiave API cliente" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "ID accesso API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Chiave di firma API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Chiave transazione API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Errore Authorize.Net:\n" +"Codice: %s\n" +"Messaggio: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ID profilo Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: ricevuti dati con riferimento (%s), trans_id (%s) o impronta " +"digitale (%s) mancante" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Genera chiave cliente" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Ricevere un pagamento con Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Rilevato token non valido: profilo di Authorize.Net mancante. Controllare " +"che il token abbia un riferimento valido al sistema." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sistema di pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token di pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Completare il profilo. " + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Accedere per completare il pagamento." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Fornitore" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Salvare carte" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Errore del server" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Creazione del profilo cliente su Authorize.Net non riuscita." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"La transazione non può essere elaborata a causa di alcuni dati di contatto " +"mancanti o non validi:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Contiene il riferimento univoco per questa combinazione token " +"pagamento/partner nell'interfaccia Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"L'opzione consente ai clienti di salvare le carte di credito come token, per" +" riutilizzarli in pagamenti successivi. Se vengono gestiti abbonamenti " +"(fatture ricorrenti) è necessario l'addebito automatico al cliente dopo " +"l'emissione della fattura." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Impossibile recuperare la chiave cliente, controllare che l'accesso e la " +"chiave di transazione siano corretti." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Attenzione" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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." diff --git a/addons/payment_authorize/i18n/ja.po b/addons/payment_authorize/i18n/ja.po new file mode 100644 index 00000000..1f3f757c --- /dev/null +++ b/addons/payment_authorize/i18n/ja.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Tsuda Ryoko <ryoko04nov@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: Tsuda Ryoko <ryoko04nov@gmail.com>, 2021\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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "決済サービス" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "支払トークン" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "プロフィールを完成させてください。" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "プロバイダ" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "カード保存" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "サーバーエラー" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/ka.po b/addons/payment_authorize/i18n/ka.po new file mode 100644 index 00000000..64a1d2a6 --- /dev/null +++ b/addons/payment_authorize/i18n/ka.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Temur, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "გადახდის ოპერატორი" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "გაფრთხილება" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/kab.po b/addons/payment_authorize/i18n/kab.po new file mode 100644 index 00000000..882c591f --- /dev/null +++ b/addons/payment_authorize/i18n/kab.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/km.po b/addons/payment_authorize/i18n/km.po new file mode 100644 index 00000000..a8be4085 --- /dev/null +++ b/addons/payment_authorize/i18n/km.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Sengtha Chay <sengtha@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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Id សំរាប់ពិនិត្យចូល" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/ko.po b/addons/payment_authorize/i18n/ko.po new file mode 100644 index 00000000..807edcae --- /dev/null +++ b/addons/payment_authorize/i18n/ko.po @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "계정이 없는 경우 영업 담당자에게 포털 접근 권한을 부여하도록 요청하십시오." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API 클라이언트 키" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API 로그인 Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API 서명 키" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Transaction Key" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net 오류 :\n" +"코드 : %s\n" +"메시지 : %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net 프로필 ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "승인 : 누락된 참조(%s) 또는 trans_id(%s) 또는 fingerprint(%s)가 있는 수신 데이터" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "클라이언트 키 생성" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Authorize.Net으로 지불받는 방법" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "잘못된 토큰을 찾았습니다 : 인증 프로파일이 없습니다. 토큰에 유효한 획득 참조가 있는지 확인하십시오." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "결제 매입사" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "결제 토큰" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "프로필을 마저 작성하십시오." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "결제를 완료하려면 사인하십시오." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "공급업체" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "카드 저장" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "서버 오류" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Authorize.NET에서 고객 프로필 생성에 실패했습니다." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "일부 연락처 세부 정보가 누락되었거나 유효하지 않기 때문에 거래를 처리할 수 없습니다." + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "여기에는 Authorize.net 백엔드에 있는 이 파트너/결제 토큰 조합에 대한 고유한 참조가 포함되어 있습니다" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"이 옵션을 사용하면 고객이 신용 카드를 결제 토큰으로 저장하고 나중에 구입할 때 재사용할 수 있습니다. 구독을 관리하는 경우(송장 청구)" +" 송장을 발급할 때 고객에게 자동으로 요금을 청구해야 합니다." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "클라이언트 키를 가져올 수 없습니다. API 로그인 및 트랜잭션 키가 올바른지 확인하십시오." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "경고" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "현재 결제 방법을 추가할 수 없습니다." diff --git a/addons/payment_authorize/i18n/lb.po b/addons/payment_authorize/i18n/lb.po new file mode 100644 index 00000000..b8137977 --- /dev/null +++ b/addons/payment_authorize/i18n/lb.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-26 08:16+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/lo.po b/addons/payment_authorize/i18n/lo.po new file mode 100644 index 00000000..ebdba98b --- /dev/null +++ b/addons/payment_authorize/i18n/lo.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/lt.po b/addons/payment_authorize/i18n/lt.po new file mode 100644 index 00000000..8d9d6e8a --- /dev/null +++ b/addons/payment_authorize/i18n/lt.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Aleksandr Jadov <a.jadov@tata.lt>, 2021 +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API prisijungimo ID" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API operacijos raktas" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net profilio ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Patvirtinimas: gauti duomenys su trūkstamu numeriu (%s) arba trans_id (%s) " +"arba pirštų antspaudu (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Kaip gauti mokėjimą per Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Rastas netinkamas raktas: trūksta patvirtinimo profilio. Įsitikinkite, kad " +"raktas turi teisingą surinkėjo numerį." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mokėjimo surinkėjas" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Mokėjimo raktas" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Užpildykite savo profilį." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Tiekėjas" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Išsaugoti korteles" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Serverio klaida" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Kliento profilio kūrimas per Authorize.NET nepavyko." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Operacija negali būti apdorota, nes trūksta kontaktinės informacijos ar ji " +"yra neteisinga:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Čia yra unikalus numeris šiai partnerio ir mokėjimo rakto kombinacijai " +"Authorize.net techninėje dalyje" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Šis pasirinkimas leidžia klientams išsaugoti savo kreditinę kortelę kaip " +"mokėjimo raktą ir naudoti ją tolimesniems pirkimams. Jei valdote " +"prenumeratas (pasikartojančias sąskaitas), jums reikia, kad ji automatiškai " +"nuskaičiuotų pinigus iš kliento tada, kai išrašote sąskaitą." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Įspėjimas" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Mums nepavyko pridėti jūsų mokėjimo būdo." diff --git a/addons/payment_authorize/i18n/lv.po b/addons/payment_authorize/i18n/lv.po new file mode 100644 index 00000000..f266a813 --- /dev/null +++ b/addons/payment_authorize/i18n/lv.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/mk.po b/addons/payment_authorize/i18n/mk.po new file mode 100644 index 00000000..76fea5fb --- /dev/null +++ b/addons/payment_authorize/i18n/mk.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/mn.po b/addons/payment_authorize/i18n/mn.po new file mode 100644 index 00000000..44d1d108 --- /dev/null +++ b/addons/payment_authorize/i18n/mn.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Хэрэв танд ямар нэгэн данс байхгүй бол борлуулагчаасаа портал хандалт " +"хийхийг асуугаарай." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Нэвтрэх ID" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API гарын үсгийн түлхүүр" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Гүйлгээний Түлхүүр" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Профайлын ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: хүлээн авсан өгөгдөлд код (%s) эсвэл trans_id (%s) эсвэл хурууны " +"хээ (%s) алга" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Authorize.Net-ээр хэрхэн төлөх вэ?" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Буруу токен олдсон байна: Зөвшөөрөх профайл байхгүй байна.\n" +"Токен нь худалдан авагчийн зөв лавлагаатай байгаа эсэхийг шалгана уу." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Төлбөрийн Токен" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Профайлаа бөглөнө үү." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Төлбөрийг гүйцээхийн тулд нэвтрэн орно уу." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Карт хадгалах" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Серверийн алдаа" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Authorize.NET дээр Захиалагчийн профайлыг үүсгэж чадсангүй." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Зарим харилцагчийн мэдээлэл дутуу эсвэл хүчин төгөлдөр бус байгаа тул " +"гүйлгээг гүйцэтгэх боломжгүй." + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Үүнд Authorize.net backend дээрх энэ түнш/төлбөрийн тасалбарын хослолын " +"давтагдашгүй кодыг агуулна" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Энэ сонголт нь үйлчлүүлэгчдэд кредит картаа төлбөрийн токен болгон хадгалах, дараа нь худалдаж авахад ашиглах боломжийг олгодог.\n" +"Хэрэв та захиалгуудыг удирдаж байгаа бол (давтагдах нэхэмжлэх), та нэхэмжлэх гаргахдаа захиалагчийг автоматаар цэнэглэх шаардлагатай болно." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Анхааруулга" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Бид одоогоор таны төлбөрийн аргыг нэмэх боломжгүй байна." diff --git a/addons/payment_authorize/i18n/nb.po b/addons/payment_authorize/i18n/nb.po new file mode 100644 index 00000000..399962d0 --- /dev/null +++ b/addons/payment_authorize/i18n/nb.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "ID for API-innlogging" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API-transaksjonsnøkkel" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net profil-ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: Mottatt data med manglende referanse (%s) eller trans_id (%s) " +"eller fingeravtrykk (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Hvordan få betalt med Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsinnløser" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Innløser" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Lagre kort" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Serverfeil" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Opprettelse av kundeprofil i Authorize.NET mislyktes." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Dette alternativet lar kunder lagre sitt kort som en betalingstoken. De kan " +"da bruke det for fremtidige kjøp. Hvis du bruker abonnement (gjentakende " +"fakturering), trenger du dette for å automatisk belaste kunden når du " +"utsteder faktura." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Vi kan for øyeblikket ikke legge til betalingsmetoden." diff --git a/addons/payment_authorize/i18n/ne.po b/addons/payment_authorize/i18n/ne.po new file mode 100644 index 00000000..85ff9ec6 --- /dev/null +++ b/addons/payment_authorize/i18n/ne.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/nl.po b/addons/payment_authorize/i18n/nl.po new file mode 100644 index 00000000..4e64e586 --- /dev/null +++ b/addons/payment_authorize/i18n/nl.po @@ -0,0 +1,232 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@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: Yenthe Van Ginneken <yenthespam@gmail.com>, 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Indien u geen account heeft, vraag dan uw contactpersoon om u portaaltoegang" +" te verlenen." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API client sleutel" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API handtekening sleutel" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Transactiesleutel" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net fout:\n" +"Code: %s\n" +"Bericht: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profiel ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: data ontvangen met ontbrekende referentie (%s) of trans_id (%s) " +"of vingerafdruk (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Genereer client sleutel" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Hoe betaald te worden met Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Ongeldige token gevonden: Het Authorize profiel ontbreekt. Zorg ervoor dat " +"het token een geldige acquirer referentie heeft." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsprovider" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "U dient uw profiel te voltooien." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "U dient in te loggen om de betaling af te ronden." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Creditcards opslaan" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Server Error" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Aanmaken van klant profiel op Authorize.NET mislukt." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Deze transactie kan niet worden verwerkt omdat sommige contactdetails " +"ontbreken of ongeldig zijn:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Dit bevat de unieke referentie voor deze klant/betaling token combinatie in " +"de Authorize.net omgeving" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Met deze optie kunnen klanten hun creditcard opslaan als een betaalmethode " +"en deze opnieuw gebruiken voor een latere aankoop. Als u abonnementen " +"beheert (periodieke facturering), hebt u deze nodig om de klant automatisch " +"in rekening te brengen bij het bevestigen van een factuur." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Kon client sleutel niet ophalen, controleer dat de API login en " +"transactiesleutel correct zijn." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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." diff --git a/addons/payment_authorize/i18n/nl_BE.po b/addons/payment_authorize/i18n/nl_BE.po new file mode 100644 index 00000000..9c0d7f35 --- /dev/null +++ b/addons/payment_authorize/i18n/nl_BE.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/payment_authorize.pot b/addons/payment_authorize/i18n/payment_authorize.pot new file mode 100644 index 00000000..c9cefcb4 --- /dev/null +++ b/addons/payment_authorize/i18n/payment_authorize.pot @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/pl.po b/addons/payment_authorize/i18n/pl.po new file mode 100644 index 00000000..f47aa50a --- /dev/null +++ b/addons/payment_authorize/i18n/pl.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Radosław Biegalski <radoslaw.biegalski@openglobe.pl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Radosław Biegalski <radoslaw.biegalski@openglobe.pl>, 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "klucz transakcji API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profile ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Beneficjent płatności" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token płatności" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Dostawca" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Zapisz karty" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Błąd Serwera" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Ostrzeżenie" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Nie możemy w tej chwili dodać twojej metody płatności." diff --git a/addons/payment_authorize/i18n/pt.po b/addons/payment_authorize/i18n/pt.po new file mode 100644 index 00000000..ab17afc6 --- /dev/null +++ b/addons/payment_authorize/i18n/pt.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "Id. de Sessão API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Código de Transação da API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Id. de Perfil de Authorize.net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermediário de Pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Código de Pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Provedor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Erro de Servidor" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/pt_BR.po b/addons/payment_authorize/i18n/pt_BR.po new file mode 100644 index 00000000..e649ca59 --- /dev/null +++ b/addons/payment_authorize/i18n/pt_BR.po @@ -0,0 +1,222 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Caio Leonardo Mendes de Sousa <caleozao@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Vanderlei Romera <vanderleiromera@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Chave de Transação" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token de pagamento" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Por favor, faça login para completar o pagamento." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Fornecedor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Salvar Cartões" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Erro interno do servidor" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Esta opção permite que os clientes salvem seu cartão de crédito como um " +"token de pagamentoe reutilizá-lo para uma compra posterior. Se você " +"gerenciar assinaturas (recorrentesfaturamento), você precisa cobrar " +"automaticamente do cliente quando emitir uma fatura." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Não podemos adicionar sua forma de pagamento no momento." diff --git a/addons/payment_authorize/i18n/ro.po b/addons/payment_authorize/i18n/ro.po new file mode 100644 index 00000000..79b66829 --- /dev/null +++ b/addons/payment_authorize/i18n/ro.po @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Hongu Cosmin <cosmin513@gmail.com>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Procesator Plată" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Token de plată" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Vă rugăm să vă completați profilul." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Vă rugăm să vă conectați pentru a finaliza plata." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Furnizor" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Salvați carduri" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Eroare server" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Tranzacția nu poate fi procesată, deoarece unele date de contact lipsesc sau" +" sunt nevalide:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Atenție" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/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ă." diff --git a/addons/payment_authorize/i18n/ru.po b/addons/payment_authorize/i18n/ru.po new file mode 100644 index 00000000..0506b68d --- /dev/null +++ b/addons/payment_authorize/i18n/ru.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Oleg Kuryan <oleg@ventor.tech>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Если у вас нет ни одного аккаунта, попросите у поставщика добавить доступ к " +"порталу." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API логина Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Ключ подписи API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API Ключ транзакций" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ID профиля Authorize.net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Авторизация: полученные данные с отсутствующей ссылкой (%s) или trans_id " +"(%s) или отпечатком пальца (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Как получить оплату с помощью Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Найденный неприемлем токен: отсутствует профиль авторизации. Пожалуйста, " +"убедитесь, что токен имеет действительный справочный номер покупателя." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платежная система" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Токен оплаты" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Пожалуйста, заполните ваш профиль." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Войдите, чтобы завершить платеж." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "сохранить карточки" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Ошибка сервера" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Не удалось создать профиль клиента в Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Транзакцию невозможно обработать, поскольку некоторые контактные данные " +"отсутствуют или недействительны:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Это содержит уникальную ссылку для партнера/комбинацию токена платежа в " +"бэкэнде Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Эта опция позволяет клиентам сохранять свою кредитную карточку как токен " +"платежа и повторно использовать ее для дальнейшей покупки. Если вы " +"управляете подписками (повторяющиеся счета-фактуры), вам нужно автоматически" +" взимать плату за клиента, когда вы выдаете счет-фактуру." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Пока мы не можем добавить свой способ оплаты." diff --git a/addons/payment_authorize/i18n/si.po b/addons/payment_authorize/i18n/si.po new file mode 100644 index 00000000..eadb4b2d --- /dev/null +++ b/addons/payment_authorize/i18n/si.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/sk.po b/addons/payment_authorize/i18n/sk.po new file mode 100644 index 00000000..ca08a743 --- /dev/null +++ b/addons/payment_authorize/i18n/sk.po @@ -0,0 +1,220 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API prihlasovacie Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API kľúč transakcie" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net " + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Platobný token" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Poskytovateľ" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Ulož karty" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Chyba servera" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Táto možnosť dovoľuje zákazníkom uchovať kreditnú kartu ako platobný token a" +" opätovne použiť na neskoršie nákupy. Ak spravujete predplatné (opakovanú " +"fakturáciu), potrebujete to k automatickému zaťaženiu zákazníka pri " +"vystavení faktúry." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Varovanie" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "V súčasnosti nemôžeme pridať vašu metódu platby." diff --git a/addons/payment_authorize/i18n/sl.po b/addons/payment_authorize/i18n/sl.po new file mode 100644 index 00000000..b83657a6 --- /dev/null +++ b/addons/payment_authorize/i18n/sl.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ponudnik plačilne storitve" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Plačilni žeton" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Ponudnik" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Napaka strežnika" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/sq.po b/addons/payment_authorize/i18n/sq.po new file mode 100644 index 00000000..27edd882 --- /dev/null +++ b/addons/payment_authorize/i18n/sq.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/sr.po b/addons/payment_authorize/i18n/sr.po new file mode 100644 index 00000000..bf85df8f --- /dev/null +++ b/addons/payment_authorize/i18n/sr.po @@ -0,0 +1,198 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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" +"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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/sr@latin.po b/addons/payment_authorize/i18n/sr@latin.po new file mode 100644 index 00000000..57298b27 --- /dev/null +++ b/addons/payment_authorize/i18n/sr@latin.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer_authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:67 +#, python-format +msgid "" +"Authorize.net Error Message(s):\n" +" %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:167 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token_save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:372 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token_save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase.If you manage subscriptions (recurring " +"invoicing), you need it to automatically charge the customer when you issue " +"an invoice." +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_authorize/i18n/sv.po b/addons/payment_authorize/i18n/sv.po new file mode 100644 index 00000000..5502cae2 --- /dev/null +++ b/addons/payment_authorize/i18n/sv.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Daniel Forslund <daniel.forslund@gmail.com>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Överföringsnyckel för API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalnings Inlösare" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Leverantör" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Server Fel" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Varning" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/th.po b/addons/payment_authorize/i18n/th.po new file mode 100644 index 00000000..f4b126b7 --- /dev/null +++ b/addons/payment_authorize/i18n/th.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:21+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_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:177 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.authorize_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:64 +#, python-format +msgid "" +"If you don't have any account, please ask your salesperson to update your " +"profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:261 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ผู้รับชำระ" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:66 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:61 +#, python-format +msgid "Please sign in to complete your profile." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "ผู้ให้บริการ" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:365 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:58 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_authorize/i18n/tr.po b/addons/payment_authorize/i18n/tr.po new file mode 100644 index 00000000..efbd2bc5 --- /dev/null +++ b/addons/payment_authorize/i18n/tr.po @@ -0,0 +1,239 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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 +# Ramiz Deniz Öner <deniz@denizoner.com>, 2020 +# Hüseyin Cem Aras <hcemaras@gmail.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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API Client Key" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Girişi Kimliği" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API Signature Key" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API İşlem Anahtarı" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profil Kimliği (ID)" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Authorize: veri kayıp referans ile alındı (%s) veya trans_id (%s) veya " +"fingerprint (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generate Client Key" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Authorize.Net ile nasıl ödeme yapılır?" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ödeme Alıcısı" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Ödeme Belirteci" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Lütfen profilinizi tamamlayınız." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Please sign in to complete the payment." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Sağlayıcı" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Kartları Kaydet" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Sunucu Hatası" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Authorize.NET üzerinde müşteri profili oluşturma işleminde hata !" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"İşlem, bazı kişi detayları olmayışından ya da doğrulanmayışından dolayı " +"gerçekleştirilemedi." + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Bu, bu ortak / ödeme token kombinasyonu için Authorize.net backend'de " +"benzersiz referansı içeriyor" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Bu seçenek müşterilere bir ödeme fişi olarak kredi kartlarını kaydetmelerine" +" ve onları daha sonraki satın almalarda kullanmalarına izin verir. Eğer " +"aboneliklerinizi yönetiyorsanız (yinelenen faturalar), bir fatura " +"düzenlediğiniz zaman, müşteriyi otomatik olarak ücretlendirmeniz gerekir. " + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "İkaz" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Şuanda ödeme metodunuzu ekleyemiyoruz." diff --git a/addons/payment_authorize/i18n/uk.po b/addons/payment_authorize/i18n/uk.po new file mode 100644 index 00000000..db5e0c0c --- /dev/null +++ b/addons/payment_authorize/i18n/uk.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Якщо у вас немає жодного облікового запису, попросіть свого продавця додати " +"доступ до порталу." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "Клієнтський ключ API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API Login Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "Ключ підпису API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Ключ транзакції API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Помилка Authorize.net:\n" +"Код: %sПовідомлення: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net Profile ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Авторизація: отримані дані з відсутнім посиланням (%s) або trans_id (%s) або" +" відбитки пальців (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Створити клієнтський ключ" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Як отримати оплату за допомогою Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Знайдено неприйнятний токен: відсутній профіль авторизації. Будь ласка, " +"переконайтеся, що токен має дійсний довідковий номер покупця." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платіжний еквайєр" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Токен оплати" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Будь ласка, заповніть ваш профіль." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Увійдіть, щоби завершити платіж." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Зберегти картки" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Помилка сервера" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Не вдалося створити профіль клієнта в Authorize.NET." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Транзакцію неможливо обробити, оскільки деякі контактні дані відсутні або " +"недійсні:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Містить унікальне посилання для цієї комбінації токенів партнерів/платіжних " +"засобів в автозапуску Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Ця опція дозволяє клієнтам зберігати свою кредитну картку як токен платежу " +"та повторно використовувати її для подальшої покупки. Якщо ви керуєте " +"підписками (повторювані рахунки-фактури), вам потрібно автоматично стягувати" +" плату за клієнта, коли ви видаєте рахунок-фактуру." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Неможливо отримати клієнтський ключ, переконайтесь, що API входу та ключ " +"транзакції є правильними." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Попередження" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Наразі ми не можемо додати свій спосіб оплати." diff --git a/addons/payment_authorize/i18n/ur.po b/addons/payment_authorize/i18n/ur.po new file mode 100644 index 00000000..a20f22a1 --- /dev/null +++ b/addons/payment_authorize/i18n/ur.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "" diff --git a/addons/payment_authorize/i18n/vi.po b/addons/payment_authorize/i18n/vi.po new file mode 100644 index 00000000..d5115e56 --- /dev/null +++ b/addons/payment_authorize/i18n/vi.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# nle_odoo, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" +"Nếu bạn không có bất kỳ tài khoản nào, hãy yêu cầu nhân viên bán hàng cấp " +"cho bạn quyền truy cập cổng thông tin." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API Client Key" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "Id đăng nhập API" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API Signature Key" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "Khóa giao dịch API" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "ID hồ sơ ủy quyền" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "" +"Ủy quyền: dữ liệu nhận được với tham chiếu bị thiếu (%s) hoặc trans_id (%s) " +"hoặc dấu vân tay (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "Generate Client Key" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "Cách thanh toán với Authorize.Net" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "" +"Đã tìm thấy mã thông báo không hợp lệ: hồ sơ ủy quyền bị thiếu. Vui lòng đảm" +" bảo mã thông báo có tham chiếu người mua hợp lệ." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "NCC dịch vụ Thanh toán" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "Mã thanh toán" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "Vui lòng hoàn thành hồ sơ của bạn" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "Vui lòng đăng nhập để hoàn thành thanh toán." + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "Nhà cung cấp" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "Lưu thẻ" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "Lỗi máy chủ" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Việc tạo hồ sơ khách hàng trong Authorize.NET không thành công." + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "" +"Giao dịch không thể được xử lý vì một số chi tiết liên lạc bị thiếu hoặc " +"không hợp lệ:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "" +"Điều này chứa tham chiếu duy nhất cho kết hợp mã thông báo đối tác / thanh " +"toán này trong phần phụ trợ Authorize.net" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "" +"Tùy chọn này cho phép khách hàng lưu thẻ tín dụng của họ như mã token thanh " +"toán và sử dụng lại thẻ đó để mua sau. Nếu bạn quản lý đăng ký (lập hóa đơn " +"định kỳ), bạn cần nó để tự động tính phí khách hàng khi bạn phát hành hóa " +"đơn." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "Cảnh báo" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "Chúng tôi không thể thêm phương thức thanh toán của bạn vào lúc này." diff --git a/addons/payment_authorize/i18n/zh_CN.po b/addons/payment_authorize/i18n/zh_CN.po new file mode 100644 index 00000000..31c0d94f --- /dev/null +++ b/addons/payment_authorize/i18n/zh_CN.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# Translators: +# Martin Trigaux, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# keecome <7017511@qq.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# Shiping Lv <lvshiping@sina.com>, 2020 +# Jeffery CHEN <jeffery9@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: Jeffery CHEN <jeffery9@gmail.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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API 登陆 Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API 签名密钥" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API 事务密匙" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "授权.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "授权.net 个人资料 ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "授权:已接收缺少参考 (%s)、trans_id (%s) 或 指纹 (%s) 的数据 " + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "如何使用 Authorize.Net 付款" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "找到无效令牌:缺少授权配置文件。请确保令牌具有有效的收单方引用。" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "支付收款" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "付款令牌" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "请完善你的个人资料。" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "请登录来完成付款。" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "物流商" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "保存卡" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "服务器错误" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Authorize.NET 中的客户个人资料创建失败。" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "无法处理事务,因为缺少或无效的某些联系人信息:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "这会将此业务伙伴/付款令牌组合的唯一参纳入在 Authorize.net 后台中" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "此选项允许客户保存信用卡作为支付令牌,并将其用于以后的购买。如果您管理订阅(循环结算单),则需要在发出结算单时自动向客户收取费用。" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "目前我们无法添加您的付款方式。" diff --git a/addons/payment_authorize/i18n/zh_TW.po b/addons/payment_authorize/i18n/zh_TW.po new file mode 100644 index 00000000..ba024538 --- /dev/null +++ b/addons/payment_authorize/i18n/zh_TW.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_authorize +# +# 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_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +" If you don't have any account, ask your salesperson to grant you a portal " +"access. " +msgstr "如果您沒有任何帳戶,請要求銷售人員授予您的門戶存取權限。" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_client_key +msgid "API Client Key" +msgstr "API 用戶端金鑰" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_login +msgid "API Login Id" +msgstr "API 登陸 Id" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_signature_key +msgid "API Signature Key" +msgstr "API 簽名金鑰" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__authorize_transaction_key +msgid "API Transaction Key" +msgstr "API 事務密匙" + +#. module: payment_authorize +#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_acquirer__provider__authorize +msgid "Authorize.Net" +msgstr "Authorize.Net" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/authorize_request.py:0 +#, python-format +msgid "" +"Authorize.net Error:\n" +"Code: %s\n" +"Message: %s" +msgstr "" +"Authorize.net錯誤:\n" +"代碼: %s\n" +"消息: %s" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile +msgid "Authorize.net Profile ID" +msgstr "Authorize.net 個人資料 ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Authorize: received data with missing reference (%s) or trans_id (%s) or " +"fingerprint (%s)" +msgstr "Authorize:收到的數據缺少參考 (%s) 或 trans_id (%s) 或指紋 (%s)" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "Generate Client Key" +msgstr "生成用戶端金鑰" + +#. module: payment_authorize +#: model_terms:ir.ui.view,arch_db:payment_authorize.acquirer_form_authorize +msgid "How to get paid with Authorize.Net" +msgstr "如何使用 Authorize.Net 付款" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Invalid token found: the Authorize profile is missing.Please make sure the " +"token has a valid acquirer reference." +msgstr "找到無效金鑰:缺少授權配置文件。請確保金鑰具有有效的收單方引用。" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "付款收單方" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_token +msgid "Payment Token" +msgstr "付款指示物" + +#. module: payment_authorize +#: model:ir.model,name:payment_authorize.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please complete your profile. " +msgstr "請完善您的個人資料。" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "Please sign in to complete the payment." +msgstr "請登錄以完成付款。" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_acquirer__provider +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__provider +msgid "Provider" +msgstr "服務商" + +#. module: payment_authorize +#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__save_token +msgid "Save Cards" +msgstr "保存卡" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "Server Error" +msgstr "伺服器錯誤" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "The Customer Profile creation in Authorize.NET failed." +msgstr "Authorize.NET 中的客戶個人資料創建失敗。" + +#. module: payment_authorize +#: code:addons/payment_authorize/controllers/main.py:0 +#, python-format +msgid "" +"The transaction cannot be processed because some contact details are missing" +" or invalid: " +msgstr "無法處理事務,因為缺少或無效的某些聯繫人資訊:" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile +msgid "" +"This contains the unique reference for this partner/payment token " +"combination in the Authorize.net backend" +msgstr "這會將此業務夥伴/付款指示物組合的唯一參考包括在 Authorize.net 後台中" + +#. module: payment_authorize +#: model:ir.model.fields,help:payment_authorize.field_payment_token__save_token +msgid "" +"This option allows customers to save their credit card as a payment token " +"and to reuse it for a later purchase. If you manage subscriptions (recurring" +" invoicing), you need it to automatically charge the customer when you issue" +" an invoice." +msgstr "該選項允許將客戶信用卡的支付授權信令用於後續支付來調用。如果您管一下您的訂閱資訊(循環發票),則需要在發出發票時自動向客戶收取費用。" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "" +"Unable to fetch Client Key, make sure the API Login and Transaction Key are " +"correct." +msgstr "無法獲取用戶端金鑰,請確保 API 登錄和事務金鑰正確。" + +#. module: payment_authorize +#: code:addons/payment_authorize/models/payment.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: payment_authorize +#. openerp-web +#: code:addons/payment_authorize/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment." +msgstr "目前我們無法添加您的付款方式。" diff --git a/addons/payment_authorize/models/__init__.py b/addons/payment_authorize/models/__init__.py new file mode 100644 index 00000000..01bcbec2 --- /dev/null +++ b/addons/payment_authorize/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import payment diff --git a/addons/payment_authorize/models/authorize_request.py b/addons/payment_authorize/models/authorize_request.py new file mode 100644 index 00000000..78db4977 --- /dev/null +++ b/addons/payment_authorize/models/authorize_request.py @@ -0,0 +1,401 @@ +# -*- coding: utf-8 -*- +import json +import logging +import requests + +from uuid import uuid4 + +from odoo import _ +from odoo.exceptions import UserError + +from odoo.addons.payment.models.payment_acquirer import _partner_split_name + +_logger = logging.getLogger(__name__) + + +class AuthorizeAPI(): + """Authorize.net Gateway API integration. + + This class allows contacting the Authorize.net API with simple operation + requests. It implements a *very limited* subset of the complete API + (http://developer.authorize.net/api/reference); namely: + - Customer Profile/Payment Profile creation + - Transaction authorization/capture/voiding + """ + + AUTH_ERROR_STATUS = 3 + + def __init__(self, acquirer): + """Initiate the environment with the acquirer data. + + :param record acquirer: payment.acquirer account that will be contacted + """ + if acquirer.state == 'test': + self.url = 'https://apitest.authorize.net/xml/v1/request.api' + else: + self.url = 'https://api.authorize.net/xml/v1/request.api' + + self.state = acquirer.state + self.name = acquirer.authorize_login + self.transaction_key = acquirer.authorize_transaction_key + + def _authorize_request(self, data): + _logger.info('_authorize_request: Sending values to URL %s, values:\n%s', self.url, data) + resp = requests.post(self.url, json.dumps(data)) + resp.raise_for_status() + resp = json.loads(resp.content) + _logger.info("_authorize_request: Received response:\n%s", resp) + messages = resp.get('messages') + if messages and messages.get('resultCode') == 'Error': + return { + 'err_code': messages.get('message')[0].get('code'), + 'err_msg': messages.get('message')[0].get('text') + } + + return resp + + # Customer profiles + def create_customer_profile(self, partner, opaqueData): + """Create a payment and customer profile in the Authorize.net backend. + + Creates a customer profile for the partner/credit card combination and links + a corresponding payment profile to it. Note that a single partner in the Odoo + database can have multiple customer profiles in Authorize.net (i.e. a customer + profile is created for every res.partner/payment.token couple). + + :param record partner: the res.partner record of the customer + :param str cardnumber: cardnumber in string format (numbers only, no separator) + :param str expiration_date: expiration date in 'YYYY-MM' string format + :param str card_code: three- or four-digit verification number + + :return: a dict containing the profile_id and payment_profile_id of the + newly created customer profile and payment profile + :rtype: dict + """ + values = { + 'createCustomerProfileRequest': { + 'merchantAuthentication': { + 'name': self.name, + 'transactionKey': self.transaction_key + }, + 'profile': { + 'description': ('ODOO-%s-%s' % (partner.id, uuid4().hex[:8]))[:20], + 'email': partner.email or '', + 'paymentProfiles': { + 'customerType': 'business' if partner.is_company else 'individual', + 'billTo': { + 'firstName': '' if partner.is_company else _partner_split_name(partner.name)[0], + 'lastName': _partner_split_name(partner.name)[1], + 'address': (partner.street or '' + (partner.street2 if partner.street2 else '')) or None, + 'city': partner.city, + 'state': partner.state_id.name or None, + 'zip': partner.zip or '', + 'country': partner.country_id.name or None, + 'phoneNumber': partner.phone or '', + }, + 'payment': { + 'opaqueData': { + 'dataDescriptor': opaqueData.get('dataDescriptor'), + 'dataValue': opaqueData.get('dataValue') + } + } + } + }, + 'validationMode': 'liveMode' if self.state == 'enabled' else 'testMode' + } + } + + response = self._authorize_request(values) + + if response and response.get('err_code'): + raise UserError(_( + "Authorize.net Error:\nCode: %s\nMessage: %s", + response.get('err_code'), response.get('err_msg'), + )) + + return { + 'profile_id': response.get('customerProfileId'), + 'payment_profile_id': response.get('customerPaymentProfileIdList')[0] + } + + def create_customer_profile_from_tx(self, partner, transaction_id): + """Create an Auth.net payment/customer profile from an existing transaction. + + Creates a customer profile for the partner/credit card combination and links + a corresponding payment profile to it. Note that a single partner in the Odoo + database can have multiple customer profiles in Authorize.net (i.e. a customer + profile is created for every res.partner/payment.token couple). + + Note that this function makes 2 calls to the authorize api, since we need to + obtain a partial cardnumber to generate a meaningful payment.token name. + + :param record partner: the res.partner record of the customer + :param str transaction_id: id of the authorized transaction in the + Authorize.net backend + + :return: a dict containing the profile_id and payment_profile_id of the + newly created customer profile and payment profile as well as the + last digits of the card number + :rtype: dict + """ + values = { + 'createCustomerProfileFromTransactionRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'transId': transaction_id, + 'customer': { + 'merchantCustomerId': ('ODOO-%s-%s' % (partner.id, uuid4().hex[:8]))[:20], + 'email': partner.email or '' + } + } + } + + response = self._authorize_request(values) + + if not response.get('customerProfileId'): + _logger.warning( + 'Unable to create customer payment profile, data missing from transaction. Transaction_id: %s - Partner_id: %s' + % (transaction_id, partner) + ) + return False + + res = { + 'profile_id': response.get('customerProfileId'), + 'payment_profile_id': response.get('customerPaymentProfileIdList')[0] + } + + values = { + 'getCustomerPaymentProfileRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'customerProfileId': res['profile_id'], + 'customerPaymentProfileId': res['payment_profile_id'], + } + } + + response = self._authorize_request(values) + + res['name'] = response.get('paymentProfile', {}).get('payment', {}).get('creditCard', {}).get('cardNumber') + return res + + # Transaction management + def auth_and_capture(self, token, amount, reference): + """Authorize and capture a payment for the given amount. + + Authorize and immediately capture a payment for the given payment.token + record for the specified amount with reference as communication. + + :param record token: the payment.token record that must be charged + :param str amount: transaction amount (up to 15 digits with decimal point) + :param str reference: used as "invoiceNumber" in the Authorize.net backend + + :return: a dict containing the response code, transaction id and transaction type + :rtype: dict + """ + values = { + 'createTransactionRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'transactionRequest': { + 'transactionType': 'authCaptureTransaction', + 'amount': str(amount), + 'profile': { + 'customerProfileId': token.authorize_profile, + 'paymentProfile': { + 'paymentProfileId': token.acquirer_ref, + } + }, + 'order': { + 'invoiceNumber': reference[:20], + 'description': reference[:255], + } + } + + } + } + response = self._authorize_request(values) + + if response and response.get('err_code'): + return { + 'x_response_code': self.AUTH_ERROR_STATUS, + 'x_response_reason_text': response.get('err_msg') + } + + result = { + 'x_response_code': response.get('transactionResponse', {}).get('responseCode'), + 'x_trans_id': response.get('transactionResponse', {}).get('transId'), + 'x_type': 'auth_capture' + } + errors = response.get('transactionResponse', {}).get('errors') + if errors: + result['x_response_reason_text'] = '\n'.join([e.get('errorText') for e in errors]) + return result + + def authorize(self, token, amount, reference): + """Authorize a payment for the given amount. + + Authorize (without capture) a payment for the given payment.token + record for the specified amount with reference as communication. + + :param record token: the payment.token record that must be charged + :param str amount: transaction amount (up to 15 digits with decimal point) + :param str reference: used as "invoiceNumber" in the Authorize.net backend + + :return: a dict containing the response code, transaction id and transaction type + :rtype: dict + """ + values = { + 'createTransactionRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'transactionRequest': { + 'transactionType': 'authOnlyTransaction', + 'amount': str(amount), + 'profile': { + 'customerProfileId': token.authorize_profile, + 'paymentProfile': { + 'paymentProfileId': token.acquirer_ref, + } + }, + 'order': { + 'invoiceNumber': reference[:20], + 'description': reference[:255], + } + } + + } + } + response = self._authorize_request(values) + + if response and response.get('err_code'): + return { + 'x_response_code': self.AUTH_ERROR_STATUS, + 'x_response_reason_text': response.get('err_msg') + } + + return { + 'x_response_code': response.get('transactionResponse', {}).get('responseCode'), + 'x_trans_id': response.get('transactionResponse', {}).get('transId'), + 'x_type': 'auth_only' + } + + def capture(self, transaction_id, amount): + """Capture a previously authorized payment for the given amount. + + Capture a previsouly authorized payment. Note that the amount is required + even though we do not support partial capture. + + :param str transaction_id: id of the authorized transaction in the + Authorize.net backend + :param str amount: transaction amount (up to 15 digits with decimal point) + + :return: a dict containing the response code, transaction id and transaction type + :rtype: dict + """ + values = { + 'createTransactionRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'transactionRequest': { + 'transactionType': 'priorAuthCaptureTransaction', + 'amount': str(amount), + 'refTransId': transaction_id, + } + } + } + + response = self._authorize_request(values) + + if response and response.get('err_code'): + return { + 'x_response_code': self.AUTH_ERROR_STATUS, + 'x_response_reason_text': response.get('err_msg') + } + + return { + 'x_response_code': response.get('transactionResponse', {}).get('responseCode'), + 'x_trans_id': response.get('transactionResponse', {}).get('transId'), + 'x_type': 'prior_auth_capture' + } + + def void(self, transaction_id): + """Void a previously authorized payment. + + :param str transaction_id: the id of the authorized transaction in the + Authorize.net backend + + :return: a dict containing the response code, transaction id and transaction type + :rtype: dict + """ + values = { + 'createTransactionRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + 'transactionRequest': { + 'transactionType': 'voidTransaction', + 'refTransId': transaction_id + } + } + } + + response = self._authorize_request(values) + + if response and response.get('err_code'): + return { + 'x_response_code': self.AUTH_ERROR_STATUS, + 'x_response_reason_text': response.get('err_msg') + } + + return { + 'x_response_code': response.get('transactionResponse', {}).get('responseCode'), + 'x_trans_id': response.get('transactionResponse', {}).get('transId'), + 'x_type': 'void' + } + + # Test + def test_authenticate(self): + """Test Authorize.net communication with a simple credentials check. + + :return: True if authentication was successful, else False (or throws an error) + :rtype: bool + """ + values = { + 'authenticateTestRequest': { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key + }, + } + } + + response = self._authorize_request(values) + if response and response.get('err_code'): + return False + return True + + # Client Key + def get_client_secret(self): + """ Create a client secret that will be needed for the AcceptJS integration. """ + values = { + "getMerchantDetailsRequest": { + "merchantAuthentication": { + "name": self.name, + "transactionKey": self.transaction_key, + } + } + } + response = self._authorize_request(values) + client_secret = response.get('publicClientKey') + return client_secret diff --git a/addons/payment_authorize/models/payment.py b/addons/payment_authorize/models/payment.py new file mode 100644 index 00000000..c4146253 --- /dev/null +++ b/addons/payment_authorize/models/payment.py @@ -0,0 +1,335 @@ +# coding: utf-8 +from werkzeug import urls + +from .authorize_request import AuthorizeAPI +import hashlib +import hmac +import logging +import time + +from odoo import _, api, fields, models +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.addons.payment_authorize.controllers.main import AuthorizeController +from odoo.tools.float_utils import float_compare, float_repr +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) + + +class PaymentAcquirerAuthorize(models.Model): + _inherit = 'payment.acquirer' + + provider = fields.Selection(selection_add=[ + ('authorize', 'Authorize.Net') + ], ondelete={'authorize': 'set default'}) + authorize_login = fields.Char(string='API Login Id', required_if_provider='authorize', groups='base.group_user') + authorize_transaction_key = fields.Char(string='API Transaction Key', required_if_provider='authorize', groups='base.group_user') + authorize_signature_key = fields.Char(string='API Signature Key', required_if_provider='authorize', groups='base.group_user') + authorize_client_key = fields.Char(string='API Client Key', groups='base.group_user') + + @api.onchange('provider', 'check_validity') + def onchange_check_validity(self): + if self.provider == 'authorize' and self.check_validity: + self.check_validity = False + return {'warning': { + 'title': _("Warning"), + 'message': ('This option is not supported for Authorize.net')}} + + def action_client_secret(self): + api = AuthorizeAPI(self) + if not api.test_authenticate(): + raise UserError(_('Unable to fetch Client Key, make sure the API Login and Transaction Key are correct.')) + self.authorize_client_key = api.get_client_secret() + return True + + 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: + * fees: support payment fees computations + * authorize: support authorizing payment (separates + authorization and capture) + * tokenize: support saving payment data in a payment.tokenize + object + """ + res = super(PaymentAcquirerAuthorize, self)._get_feature_support() + res['authorize'].append('authorize') + res['tokenize'].append('authorize') + return res + + def _get_authorize_urls(self, environment): + """ Authorize URLs """ + if environment == 'prod': + return {'authorize_form_url': 'https://secure2.authorize.net/gateway/transact.dll'} + else: + return {'authorize_form_url': 'https://test.authorize.net/gateway/transact.dll'} + + def _authorize_generate_hashing(self, values): + data = '^'.join([ + values['x_login'], + values['x_fp_sequence'], + values['x_fp_timestamp'], + values['x_amount'], + values['x_currency_code']]).encode('utf-8') + + return hmac.new(bytes.fromhex(self.authorize_signature_key), data, hashlib.sha512).hexdigest().upper() + + def authorize_form_generate_values(self, values): + self.ensure_one() + # State code is only supported in US, use state name by default + # See https://developer.authorize.net/api/reference/ + state = values['partner_state'].name if values.get('partner_state') else '' + if values.get('partner_country') and values.get('partner_country') == self.env.ref('base.us', False): + state = values['partner_state'].code if values.get('partner_state') else '' + billing_state = values['billing_partner_state'].name if values.get('billing_partner_state') else '' + if values.get('billing_partner_country') and values.get('billing_partner_country') == self.env.ref('base.us', False): + billing_state = values['billing_partner_state'].code if values.get('billing_partner_state') else '' + + base_url = self.get_base_url() + authorize_tx_values = dict(values) + temp_authorize_tx_values = { + 'x_login': self.authorize_login, + 'x_amount': float_repr(values['amount'], values['currency'].decimal_places if values['currency'] else 2), + 'x_show_form': 'PAYMENT_FORM', + 'x_type': 'AUTH_CAPTURE' if not self.capture_manually else 'AUTH_ONLY', + 'x_method': 'CC', + 'x_fp_sequence': '%s%s' % (self.id, int(time.time())), + 'x_version': '3.1', + 'x_relay_response': 'TRUE', + 'x_fp_timestamp': str(int(time.time())), + 'x_relay_url': urls.url_join(base_url, AuthorizeController._return_url), + 'x_cancel_url': urls.url_join(base_url, AuthorizeController._cancel_url), + 'x_currency_code': values['currency'] and values['currency'].name or '', + 'address': values.get('partner_address'), + 'city': values.get('partner_city'), + 'country': values.get('partner_country') and values.get('partner_country').name or '', + 'email': values.get('partner_email'), + 'zip_code': values.get('partner_zip'), + 'first_name': values.get('partner_first_name'), + 'last_name': values.get('partner_last_name'), + 'phone': values.get('partner_phone'), + 'state': state, + 'billing_address': values.get('billing_partner_address'), + 'billing_city': values.get('billing_partner_city'), + 'billing_country': values.get('billing_partner_country') and values.get('billing_partner_country').name or '', + 'billing_email': values.get('billing_partner_email'), + 'billing_zip_code': values.get('billing_partner_zip'), + 'billing_first_name': values.get('billing_partner_first_name'), + 'billing_last_name': values.get('billing_partner_last_name'), + 'billing_phone': values.get('billing_partner_phone'), + 'billing_state': billing_state, + } + temp_authorize_tx_values['returndata'] = authorize_tx_values.pop('return_url', '') + temp_authorize_tx_values['x_fp_hash'] = self._authorize_generate_hashing(temp_authorize_tx_values) + authorize_tx_values.update(temp_authorize_tx_values) + return authorize_tx_values + + def authorize_get_form_action_url(self): + self.ensure_one() + environment = 'prod' if self.state == 'enabled' else 'test' + return self._get_authorize_urls(environment)['authorize_form_url'] + + @api.model + def authorize_s2s_form_process(self, data): + values = { + 'opaqueData': data.get('opaqueData'), + 'encryptedCardData': data.get('encryptedCardData'), + 'acquirer_id': int(data.get('acquirer_id')), + 'partner_id': int(data.get('partner_id')) + } + PaymentMethod = self.env['payment.token'].sudo().create(values) + return PaymentMethod + + def authorize_s2s_form_validate(self, data): + error = dict() + mandatory_fields = ["opaqueData", "encryptedCardData"] + # Validation + for field_name in mandatory_fields: + if not data.get(field_name): + error[field_name] = 'missing' + return False if error else True + + def authorize_test_credentials(self): + self.ensure_one() + transaction = AuthorizeAPI(self.acquirer_id) + return transaction.test_authenticate() + +class TxAuthorize(models.Model): + _inherit = 'payment.transaction' + + _authorize_valid_tx_status = 1 + _authorize_pending_tx_status = 4 + _authorize_cancel_tx_status = 2 + _authorize_error_tx_status = 3 + + # -------------------------------------------------- + # FORM RELATED METHODS + # -------------------------------------------------- + + @api.model + def _authorize_form_get_tx_from_data(self, data): + """ Given a data dict coming from authorize, verify it and find the related + transaction record. """ + reference, description, trans_id, fingerprint = data.get('x_invoice_num'), data.get('x_description'), data.get('x_trans_id'), data.get('x_SHA2_Hash') or data.get('x_MD5_Hash') + if not reference or not trans_id or not fingerprint: + error_msg = _('Authorize: received data with missing reference (%s) or trans_id (%s) or fingerprint (%s)') % (reference, trans_id, fingerprint) + _logger.info(error_msg) + raise ValidationError(error_msg) + tx = self.search(['|', ('reference', '=', reference), ('reference', '=', description)]) + if not tx or len(tx) > 1: + error_msg = 'Authorize: received data for x_invoice_num %s and x_description %s' % (reference, description) + if not tx: + error_msg += '; no order found' + else: + error_msg += '; multiple order found' + _logger.info(error_msg) + raise ValidationError(error_msg) + return tx[0] + + def _authorize_form_get_invalid_parameters(self, data): + invalid_parameters = [] + + if self.acquirer_reference and data.get('x_trans_id') != self.acquirer_reference: + invalid_parameters.append(('Transaction Id', data.get('x_trans_id'), self.acquirer_reference)) + # check what is buyed + if float_compare(float(data.get('x_amount', '0.0')), self.amount, 2) != 0: + invalid_parameters.append(('Amount', data.get('x_amount'), '%.2f' % self.amount)) + return invalid_parameters + + def _authorize_form_validate(self, data): + if self.state == 'done': + _logger.warning('Authorize: trying to validate an already validated tx (ref %s)' % self.reference) + return True + status_code = int(data.get('x_response_code', '0')) + if status_code == self._authorize_valid_tx_status: + if data.get('x_type').lower() in ['auth_capture', 'prior_auth_capture']: + self.write({ + 'acquirer_reference': data.get('x_trans_id'), + 'date': fields.Datetime.now(), + }) + self._set_transaction_done() + elif data.get('x_type').lower() in ['auth_only']: + self.write({'acquirer_reference': data.get('x_trans_id')}) + self._set_transaction_authorized() + if self.partner_id and not self.payment_token_id and \ + (self.type == 'form_save' or self.acquirer_id.save_token == 'always'): + transaction = AuthorizeAPI(self.acquirer_id) + res = transaction.create_customer_profile_from_tx(self.partner_id, self.acquirer_reference) + if res: + token_id = self.env['payment.token'].create({ + 'authorize_profile': res.get('profile_id'), + 'name': res.get('name'), + 'acquirer_ref': res.get('payment_profile_id'), + 'acquirer_id': self.acquirer_id.id, + 'partner_id': self.partner_id.id, + }) + self.payment_token_id = token_id + return True + elif status_code == self._authorize_pending_tx_status: + self.write({'acquirer_reference': data.get('x_trans_id')}) + self._set_transaction_pending() + return True + else: + error = data.get('x_response_reason_text') + _logger.info(error) + self.write({ + 'state_message': error, + 'acquirer_reference': data.get('x_trans_id'), + }) + self._set_transaction_cancel() + return False + + def authorize_s2s_do_transaction(self, **data): + self.ensure_one() + transaction = AuthorizeAPI(self.acquirer_id) + + if not self.payment_token_id.authorize_profile: + raise UserError(_('Invalid token found: the Authorize profile is missing.' + 'Please make sure the token has a valid acquirer reference.')) + + if not self.acquirer_id.capture_manually: + res = transaction.auth_and_capture(self.payment_token_id, round(self.amount, self.currency_id.decimal_places), self.reference) + else: + res = transaction.authorize(self.payment_token_id, round(self.amount, self.currency_id.decimal_places), self.reference) + return self._authorize_s2s_validate_tree(res) + + def authorize_s2s_capture_transaction(self): + self.ensure_one() + transaction = AuthorizeAPI(self.acquirer_id) + tree = transaction.capture(self.acquirer_reference or '', round(self.amount, self.currency_id.decimal_places)) + return self._authorize_s2s_validate_tree(tree) + + def authorize_s2s_void_transaction(self): + self.ensure_one() + transaction = AuthorizeAPI(self.acquirer_id) + tree = transaction.void(self.acquirer_reference or '') + return self._authorize_s2s_validate_tree(tree) + + def _authorize_s2s_validate_tree(self, tree): + return self._authorize_s2s_validate(tree) + + def _authorize_s2s_validate(self, tree): + if self.state == 'done': + _logger.warning('Authorize: trying to validate an already validated tx (ref %s)' % self.reference) + return True + status_code = int(tree.get('x_response_code', '0')) + if status_code == self._authorize_valid_tx_status: + if tree.get('x_type').lower() in ['auth_capture', 'prior_auth_capture']: + init_state = self.state + self.write({ + 'acquirer_reference': tree.get('x_trans_id'), + 'date': fields.Datetime.now(), + }) + + self._set_transaction_done() + + if init_state != 'authorized': + self.execute_callback() + if tree.get('x_type').lower() == 'auth_only': + self.write({'acquirer_reference': tree.get('x_trans_id')}) + self._set_transaction_authorized() + self.execute_callback() + if tree.get('x_type').lower() == 'void': + self._set_transaction_cancel() + return True + elif status_code == self._authorize_pending_tx_status: + self.write({'acquirer_reference': tree.get('x_trans_id')}) + self._set_transaction_pending() + return True + else: + error = tree.get('x_response_reason_text') + _logger.info(error) + self.write({ + 'acquirer_reference': tree.get('x_trans_id'), + }) + self._set_transaction_error(msg=error) + return False + + +class PaymentToken(models.Model): + _inherit = 'payment.token' + + authorize_profile = fields.Char(string='Authorize.net Profile ID', help='This contains the unique reference ' + 'for this partner/payment token combination in the Authorize.net backend') + provider = fields.Selection(string='Provider', related='acquirer_id.provider', readonly=False) + save_token = fields.Selection(string='Save Cards', related='acquirer_id.save_token', readonly=False) + + @api.model + def authorize_create(self, values): + if values.get('opaqueData') and values.get('encryptedCardData'): + acquirer = self.env['payment.acquirer'].browse(values['acquirer_id']) + partner = self.env['res.partner'].browse(values['partner_id']) + transaction = AuthorizeAPI(acquirer) + res = transaction.create_customer_profile(partner, values['opaqueData']) + if res.get('profile_id') and res.get('payment_profile_id'): + return { + 'authorize_profile': res.get('profile_id'), + 'name': values['encryptedCardData'].get('cardNumber'), + 'acquirer_ref': res.get('payment_profile_id'), + 'verified': True + } + else: + raise ValidationError(_('The Customer Profile creation in Authorize.NET failed.')) + else: + return values diff --git a/addons/payment_authorize/static/description/icon.png b/addons/payment_authorize/static/description/icon.png Binary files differnew file mode 100644 index 00000000..235f1adb --- /dev/null +++ b/addons/payment_authorize/static/description/icon.png diff --git a/addons/payment_authorize/static/description/icon.svg b/addons/payment_authorize/static/description/icon.svg new file mode 100644 index 00000000..c2755ee6 --- /dev/null +++ b/addons/payment_authorize/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.5H33.625l-2.62-6.5h18.031v-3.212a.342.342 0 0 0-.339-.343H29.765l-1.018-2.742h20.289c1.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-.711V55zm17.163-12.266c0 .228-.19.342-.57.342-.253 0-.481-.013-.684-.038l-4.826-.076-4.826.076a4.036 4.036 0 0 1-.57.038c-.507 0-.76-.127-.76-.38 0-.279.342-.418 1.026-.418 2.23-.025 3.344-.253 3.344-.684 0-.025-.025-.127-.076-.304l-.304-1.026-.19-.532c-.228-.785-.785-2.52-1.672-5.206h-8.132c-1.52 4.053-2.28 6.384-2.28 6.992 0 .355.152.57.456.646.076.025.71.076 1.9.152.735.025 1.102.152 1.102.38 0 .253-.33.38-.988.38-1.165 0-2.52-.05-4.066-.152-.38-.025-.773-.038-1.178-.038-.405 0-.798.025-1.178.076A4.157 4.157 0 0 1 9.62 43c-.355 0-.532-.114-.532-.342 0-.228.399-.355 1.197-.38.798-.025 1.374-.146 1.729-.361s.633-.627.836-1.235c3.268-9.323 5.928-16.809 7.98-22.458a5.04 5.04 0 0 1 .304-1.026l.19-.684c.076-.279.177-.418.304-.418.076 0 .14.076.19.228.33.988 1.077 3.053 2.242 6.194.912 2.457 3.18 8.626 6.802 18.506.203.557.462.912.779 1.064.317.152.969.24 1.957.266.659.025.988.152.988.38zM24.25 33.652l-2.014-5.662-1.824-5.206c-1.064 2.787-2.343 6.41-3.838 10.868h7.676z"/><path id="e" d="M19.25 44h2.714v1.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V35.5H33.625l-2.62-6.5h18.031v-3.212a.342.342 0 0 0-.339-.343H29.765l-1.018-2.742h20.289c1.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-.711V53zm17.163-12.266c0 .228-.19.342-.57.342-.253 0-.481-.013-.684-.038l-4.826-.076-4.826.076a4.036 4.036 0 0 1-.57.038c-.507 0-.76-.127-.76-.38 0-.279.342-.418 1.026-.418 2.23-.025 3.344-.253 3.344-.684 0-.025-.025-.127-.076-.304l-.304-1.026-.19-.532c-.228-.785-.785-2.52-1.672-5.206h-8.132c-1.52 4.053-2.28 6.384-2.28 6.992 0 .355.152.57.456.646.076.025.71.076 1.9.152.735.025 1.102.152 1.102.38 0 .253-.33.38-.988.38-1.165 0-2.52-.05-4.066-.152-.38-.025-.773-.038-1.178-.038-.405 0-.798.025-1.178.076A4.157 4.157 0 0 1 9.62 41c-.355 0-.532-.114-.532-.342 0-.228.399-.355 1.197-.38.798-.025 1.374-.146 1.729-.361s.633-.627.836-1.235c3.268-9.323 5.928-16.809 7.98-22.458a5.04 5.04 0 0 1 .304-1.026l.19-.684c.076-.279.177-.418.304-.418.076 0 .14.076.19.228.33.988 1.077 3.053 2.242 6.194.912 2.457 3.18 8.626 6.802 18.506.203.557.462.912.779 1.064.317.152.969.24 1.957.266.659.025.988.152.988.38zM24.25 31.652l-2.014-5.662-1.824-5.206c-1.064 2.787-2.343 6.41-3.838 10.868h7.676z"/></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.916l21.6-19.82 3.4 8.607h12.25L48 23l3.576 1.968-.236 22.01L39.224 69H4z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
\ No newline at end of file diff --git a/addons/payment_authorize/static/src/img/authorize_icon.png b/addons/payment_authorize/static/src/img/authorize_icon.png Binary files differnew file mode 100644 index 00000000..5f039387 --- /dev/null +++ b/addons/payment_authorize/static/src/img/authorize_icon.png diff --git a/addons/payment_authorize/static/src/js/payment_form.js b/addons/payment_authorize/static/src/js/payment_form.js new file mode 100644 index 00000000..54007ce4 --- /dev/null +++ b/addons/payment_authorize/static/src/js/payment_form.js @@ -0,0 +1,160 @@ +odoo.define('payment_authorize.payment_form', function (require) { +"use strict"; + +var ajax = require('web.ajax'); +var core = require('web.core'); +var PaymentForm = require('payment.payment_form'); + +var _t = core._t; + +PaymentForm.include({ + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * Returns the parameters for the AcceptUI button that AcceptJS will use. + * + * @private + * @param {Object} formData data obtained by getFormData + * @returns {Object} params for the AcceptJS button + */ + _acceptJsParams: function (formData) { + return { + 'class': 'AcceptUI d-none', + 'data-apiLoginID': formData.login_id, + 'data-clientKey': formData.client_key, + 'data-billingAddressOptions': '{"show": false, "required": false}', + 'data-responseHandler': 'responseHandler' + }; + }, + + /** + * 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 + */ + _createAuthorizeToken: function (ev, $checkedRadio, addPmEvent) { + var self = this; + if (ev.type === 'submit') { + var button = $(ev.target).find('*[type="submit"]')[0] + } else { + var button = ev.target; + } + var acquirerID = this.getAcquirerIdFromRadio($checkedRadio); + var acquirerForm = this.$('#o_payment_add_token_acq_' + acquirerID); + var inputsForm = $('input', acquirerForm); + var formData = self.getFormData(inputsForm); + if (this.options.partnerId === undefined) { + console.warn('payment_form: unset partner_id when adding new token; things could go wrong'); + } + var AcceptJs = false; + if (formData.acquirer_state === 'enabled') { + AcceptJs = 'https://js.authorize.net/v3/AcceptUI.js'; + } else { + AcceptJs = 'https://jstest.authorize.net/v3/AcceptUI.js'; + } + + window.responseHandler = function (response) { + _.extend(formData, response); + + if (response.messages.resultCode === "Error") { + var errorMessage = ""; + _.each(response.messages.message, function (message) { + errorMessage += message.code + ": " + message.text; + }) + acquirerForm.removeClass('d-none'); + return self.displayError(_t('Server Error'), errorMessage); + } + + self._rpc({ + route: formData.data_set, + params: formData + }).then (function (data) { + if (addPmEvent) { + if (formData.return_url) { + window.location = formData.return_url; + } else { + window.location.reload(); + } + } else { + $checkedRadio.val(data.id); + self.el.submit(); + } + }).guardedCatch(function (error) { + // if the rpc fails, pretty obvious + error.event.preventDefault(); + acquirerForm.removeClass('d-none'); + self.displayError( + _t('Server Error'), + _t("We are not able to add your payment method at the moment.") + + self._parseError(error) + ); + }); + }; + + if (this.$button === undefined) { + this.$button = $('<button>', this._acceptJsParams(formData)); + this.$button.appendTo('body'); + } + ajax.loadJS(AcceptJs).then(function () { + self.$button.trigger('click'); + }); + }, + /** + * @override + */ + updateNewPaymentDisplayStatus: function () { + var $checkedRadio = this.$('input[type="radio"]:checked'); + + if ($checkedRadio.length !== 1) { + return; + } + + // hide add token form for authorize + if ($checkedRadio.data('provider') === 'authorize' && this.isNewPaymentRadio($checkedRadio)) { + this.$('[id*="o_payment_add_token_acq_"]').addClass('d-none'); + } else { + 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 authorize as s2s payment method + if ($checkedRadio.length === 1 && this.isNewPaymentRadio($checkedRadio) && $checkedRadio.data('provider') === 'authorize') { + this._createAuthorizeToken(ev, $checkedRadio); + } else { + 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 authorize as add payment method + if ($checkedRadio.length === 1 && this.isNewPaymentRadio($checkedRadio) && $checkedRadio.data('provider') === 'authorize') { + this._createAuthorizeToken(ev, $checkedRadio, true); + } else { + this._super.apply(this, arguments); + } + }, +}); +}); diff --git a/addons/payment_authorize/tests/__init__.py b/addons/payment_authorize/tests/__init__.py new file mode 100644 index 00000000..10e174a3 --- /dev/null +++ b/addons/payment_authorize/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_authorize diff --git a/addons/payment_authorize/tests/test_authorize.py b/addons/payment_authorize/tests/test_authorize.py new file mode 100644 index 00000000..af9eda6b --- /dev/null +++ b/addons/payment_authorize/tests/test_authorize.py @@ -0,0 +1,275 @@ +# -*- coding: utf-8 -*- + +import time +from werkzeug import urls +from lxml import objectify + +import odoo +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.addons.payment.tests.common import PaymentAcquirerCommon +from odoo.addons.payment_authorize.controllers.main import AuthorizeController +from odoo.tools import mute_logger + + +@odoo.tests.tagged('post_install', '-at_install') +class AuthorizeCommon(PaymentAcquirerCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + # authorize only support USD in test environment + cls.currency_usd = cls.env['res.currency'].search([('name', '=', 'USD')], limit=1)[0] + # get the authorize account + cls.authorize = cls.env.ref('payment.payment_acquirer_authorize') + cls.authorize.write({ + 'authorize_login': 'dummy', + 'authorize_transaction_key': 'dummy', + 'authorize_signature_key': '00000000', + 'state': 'test', + }) + # Be sure to be in 'capture' mode + # self.authorize.auto_confirm = 'confirm_so' + + +@odoo.tests.tagged('post_install', '-at_install', '-standard', 'external') +class AuthorizeForm(AuthorizeCommon): + + def test_10_Authorize_form_render(self): + self.assertEqual(self.authorize.state, 'test', 'test without test environment') + + # ---------------------------------------- + # Test: button direct rendering + # ---------------------------------------- + base_url = self.env['ir.config_parameter'].get_param('web.base.url') + form_values = { + 'x_login': self.authorize.authorize_login, + 'x_amount': '56.16', + 'x_show_form': 'PAYMENT_FORM', + 'x_type': 'AUTH_CAPTURE', + 'x_method': 'CC', + 'x_fp_sequence': '%s%s' % (self.authorize.id, int(time.time())), + 'x_version': '3.1', + 'x_relay_response': 'TRUE', + 'x_fp_timestamp': str(int(time.time())), + 'x_relay_url': urls.url_join(base_url, AuthorizeController._return_url), + 'x_cancel_url': urls.url_join(base_url, AuthorizeController._cancel_url), + 'return_url': None, + 'x_currency_code': 'USD', + 'x_invoice_num': 'SO004', + 'x_first_name': 'Norbert', + 'x_last_name': 'Buyer', + 'x_company': 'Big Company', + 'x_address': 'Huge Street 2/543', + 'x_city': 'Sin City', + 'x_zip': '1000', + 'x_country': 'Belgium', + 'x_phone': '0032 12 34 56 78', + 'x_email': 'norbert.buyer@example.com', + 'x_state': None, + 'x_ship_to_first_name': 'Norbert', + 'x_ship_to_last_name': 'Buyer', + 'x_ship_to_address': 'Huge Street 2/543', + 'x_ship_to_city': 'Sin City', + 'x_ship_to_zip': '1000', + 'x_ship_to_country': 'Belgium', + 'x_ship_to_phone': '0032 12 34 56 78', + 'x_ship_to_email': 'norbert.buyer@example.com', + 'x_ship_to_state': None, + } + + form_values['x_fp_hash'] = self.authorize._authorize_generate_hashing(form_values) + # render the button + res = self.authorize.render('SO004', 56.16, self.currency_usd.id, values=self.buyer_values) + # check form result + tree = objectify.fromstring(res) + + data_set = tree.xpath("//input[@name='data_set']") + self.assertEqual(len(data_set), 1, 'Authorize: Found %d "data_set" input instead of 1' % len(data_set)) + self.assertEqual(data_set[0].get('data-action-url'), 'https://test.authorize.net/gateway/transact.dll', 'Authorize: wrong data-action-url POST url') + for el in tree.iterfind('input'): + values = list(el.attrib.values()) + if values[1] in ['submit', 'x_fp_hash', 'return_url', 'x_state', 'x_ship_to_state', 'data_set']: + continue + self.assertEqual( + values[2], + form_values[values[1]], + 'Authorize: wrong value for input %s: received %s instead of %s' % (values[1], values[2], form_values[values[1]]) + ) + + @mute_logger('odoo.addons.payment_authorize.models.payment', 'ValidationError') + def test_20_authorize_form_management(self): + # be sure not to do stupid thing + self.assertEqual(self.authorize.state, 'test', 'test without test environment') + + # typical data posted by authorize after client has successfully paid + authorize_post_data = { + 'return_url': u'/shop/payment/validate', + # x_MD5_Hash will be empty starting the 28th March 2019 + 'x_MD5_Hash': u'7934485E1C105940BE854208D10FAB4F', + 'x_SHA2_Hash': u'7D3AC844BE8CA3F649AB885A90D22CFE35B850338EC91D1A5ADD819A85FF948A3D777334A18CDE36821DC8F2B42A6E1950C1FF96B52B60F23201483A656195FB', + 'x_account_number': u'XXXX0027', + 'x_address': u'Huge Street 2/543', + 'x_amount': u'320.00', + 'x_auth_code': u'E4W7IU', + 'x_avs_code': u'Y', + 'x_card_type': u'Visa', + 'x_cavv_response': u'2', + 'x_city': u'Sun City', + 'x_company': u'', + 'x_country': u'Belgium', + 'x_cust_id': u'', + 'x_cvv2_resp_code': u'', + 'x_description': u'', + 'x_duty': u'0.00', + 'x_email': u'norbert.buyer@example.com', + 'x_fax': u'', + 'x_first_name': u'Norbert', + 'x_freight': u'0.00', + 'x_invoice_num': u'SO004', + 'x_last_name': u'Buyer', + 'x_method': u'CC', + 'x_phone': u'0032 12 34 56 78', + 'x_po_num': u'', + 'x_response_code': u'1', + 'x_response_reason_code': u'1', + 'x_response_reason_text': u'This transaction has been approved.', + 'x_ship_to_address': u'Huge Street 2/543', + 'x_ship_to_city': u'Sun City', + 'x_ship_to_company': u'', + 'x_ship_to_country': u'Belgium', + 'x_ship_to_first_name': u'Norbert', + 'x_ship_to_last_name': u'Buyer', + 'x_ship_to_state': u'', + 'x_ship_to_zip': u'1000', + 'x_state': u'', + 'x_tax': u'0.00', + 'x_tax_exempt': u'FALSE', + 'x_test_request': u'false', + 'x_trans_id': u'2217460311', + 'x_type': u'auth_capture', + 'x_zip': u'1000' + } + + # should raise error about unknown tx + with self.assertRaises(ValidationError): + self.env['payment.transaction'].form_feedback(authorize_post_data, 'authorize') + + tx = self.env['payment.transaction'].create({ + 'amount': 320.0, + 'acquirer_id': self.authorize.id, + 'currency_id': self.currency_usd.id, + 'reference': 'SO004', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + # validate it + self.env['payment.transaction'].form_feedback(authorize_post_data, 'authorize') + # check state + self.assertEqual(tx.state, 'done', 'Authorize: validation did not put tx into done state') + self.assertEqual(tx.acquirer_reference, authorize_post_data.get('x_trans_id'), 'Authorize: validation did not update tx payid') + + tx = self.env['payment.transaction'].create({ + 'amount': 320.0, + 'acquirer_id': self.authorize.id, + 'currency_id': self.currency_usd.id, + 'reference': 'SO004-2', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + # simulate an error + authorize_post_data['x_response_code'] = u'3' + self.env['payment.transaction'].form_feedback(authorize_post_data, 'authorize') + # check state + self.assertNotEqual(tx.state, 'done', 'Authorize: erroneous validation did put tx into done state') + + +@odoo.tests.tagged('post_install', '-at_install', '-standard') +class AuthorizeS2s(AuthorizeCommon): + def test_30_authorize_s2s(self): + # be sure not to do stupid thing + authorize = self.authorize + self.assertEqual(authorize.state, 'test', 'test without test environment') + + # add credential + # FIXME: put this test in master-nightly on odoo/odoo + create sandbox account + authorize.write({ + 'authorize_transaction_key': '', + 'authorize_login': '', + }) + self.assertTrue(authorize.authorize_test_credentials, 'Authorize.net: s2s authentication failed') + + # create payment meethod + payment_token = self.env['payment.token'].create({ + 'acquirer_id': authorize.id, + 'partner_id': self.buyer_id, + 'opaqueData': { + 'dataDescriptor': 'COMMON.ACCEPT.INAPP.PAYMENT', + 'dataValue': '9487801666614876704604' + }, + }) + + # create normal s2s transaction + transaction = self.env['payment.transaction'].create({ + 'amount': 500, + 'acquirer_id': authorize.id, + 'type': 'server2server', + 'currency_id': self.currency_usd.id, + 'reference': 'test_ref_%s' % int(time.time()), + 'payment_token_id': payment_token.id, + 'partner_id': self.buyer_id, + + }) + transaction.authorize_s2s_do_transaction() + self.assertEqual(transaction.state, 'done',) + + # switch to 'authorize only' + # create authorize only s2s transaction & capture it + self.authorize.capture_manually = True + transaction = self.env['payment.transaction'].create({ + 'amount': 500, + 'acquirer_id': authorize.id, + 'type': 'server2server', + 'currency_id': self.currency_usd.id, + 'reference': 'test_%s' % int(time.time()), + 'payment_token_id': payment_token.id, + 'partner_id': self.buyer_id, + + }) + transaction.authorize_s2s_do_transaction() + self.assertEqual(transaction.state, 'authorized') + transaction.action_capture() + self.assertEqual(transaction.state, 'done') + + # create authorize only s2s transaction & void it + self.authorize.capture_manually = True + transaction = self.env['payment.transaction'].create({ + 'amount': 500, + 'acquirer_id': authorize.id, + 'type': 'server2server', + 'currency_id': self.currency_usd.id, + 'reference': 'test_%s' % int(time.time()), + 'payment_token_id': payment_token.id, + 'partner_id': self.buyer_id, + + }) + transaction.authorize_s2s_do_transaction() + self.assertEqual(transaction.state, 'authorized') + transaction.action_void() + self.assertEqual(transaction.state, 'cancel') + + # try charging an unexisting profile + ghost_payment_token = payment_token.copy() + ghost_payment_token.authorize_profile = '99999999999' + # create normal s2s transaction + transaction = self.env['payment.transaction'].create({ + 'amount': 500, + 'acquirer_id': authorize.id, + 'type': 'server2server', + 'currency_id': self.currency_usd.id, + 'reference': 'test_ref_%s' % int(time.time()), + 'payment_token_id': ghost_payment_token.id, + 'partner_id': self.buyer_id, + + }) + transaction.authorize_s2s_do_transaction() + self.assertEqual(transaction.state, 'cancel') diff --git a/addons/payment_authorize/views/payment_authorize_templates.xml b/addons/payment_authorize/views/payment_authorize_templates.xml new file mode 100644 index 00000000..e1bad342 --- /dev/null +++ b/addons/payment_authorize/views/payment_authorize_templates.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <template id="authorize_form"> + <div> + <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/> + <input type="hidden" name='x_login' t-att-value='x_login'/> + <input type="hidden" name='x_fp_hash' t-att-value='x_fp_hash'/> + <input type="hidden" name='x_amount' t-att-value='x_amount'/> + <input type="hidden" name='x_show_form' t-att-value="x_show_form"/> + <input type="hidden" name='x_type' t-att-value="x_type"/> + <input type="hidden" name='x_method' t-att-value="x_method"/> + <input type="hidden" name='x_fp_sequence' t-att-value='x_fp_sequence'/> + <input type="hidden" name='x_version' t-att-value="x_version"/> + <input type="hidden" name="x_relay_response" t-att-value="x_relay_response"/> + <input type="hidden" name="x_relay_url" t-att-value="x_relay_url"/> + <input type="hidden" name="x_fp_timestamp" t-att-value="x_fp_timestamp"/> + <input type="hidden" name='return_url' t-att-value="returndata"/> + <input type="hidden" name='x_cancel_url' t-att-value="x_cancel_url"/> + <!--Order Information --> + <input type="hidden" name='x_invoice_num' t-att-value='reference'/> + <input type="hidden" name='x_description' t-att-value='reference'/> + <input type="hidden" name='x_currency_code' t-att-value='x_currency_code'/> + <!-- Billing Information--> + <input type="hidden" name='x_first_name' t-att-value="billing_first_name"/> + <input type="hidden" name='x_last_name' t-att-value="billing_last_name"/> + <input type="hidden" name="x_company" t-att-value="billing_partner_commercial_company_name"/> + <input type="hidden" name='x_address' t-att-value="billing_address"/> + <input type="hidden" name='x_city' t-att-value="billing_city"/> + <input type="hidden" name='x_zip' t-att-value="billing_zip_code"/> + <input type="hidden" name='x_country' t-att-value="billing_country"/> + <input type="hidden" name='x_phone' t-att-value='billing_phone'/> + <input type="hidden" name='x_email' t-att-value="billing_email"/> + <input type="hidden" name='x_state' t-att-value="billing_state"/> + <!-- Shipping Information--> + <input type="hidden" name='x_ship_to_first_name' t-att-value="first_name"/> + <input type="hidden" name='x_ship_to_last_name' t-att-value="last_name"/> + <input type="hidden" name='x_ship_to_address' t-att-value="address"/> + <input type="hidden" name='x_ship_to_city' t-att-value="city"/> + <input type="hidden" name='x_ship_to_zip' t-att-value="zip_code"/> + <input type="hidden" name='x_ship_to_country' t-att-value="country"/> + <input type="hidden" name='x_ship_to_phone' t-att-value='phone'/> + <input type="hidden" name='x_ship_to_email' t-att-value="email"/> + <input type="hidden" name='x_ship_to_state' t-att-value="state"/> + </div> + </template> + + <template id="payment_authorize_redirect" name="Payment Authorize"> + <script type="text/javascript"> + window.location.href = '<t t-esc="return_url"/>'; + </script> + </template> + + <template id="authorize_s2s_form"> + <input type="hidden" name="data_set" value="/payment/authorize/s2s/create_json_3ds"/> + <input type="hidden" name="acquirer_id" t-att-value="id"/> + <input type="hidden" name="acquirer_state" t-att-value="acq.state"/> + <input type="hidden" name="login_id" t-att-value="acq.sudo().authorize_login"/> + <input type="hidden" name="client_key" t-att-value="acq.sudo().authorize_client_key"/> + <input class="d-none" name="csrf_token" t-att-value="request.csrf_token()"/> + <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"/> + </template> + + <template id="assets_frontend" inherit_id="web.assets_frontend"> + <xpath expr="script[last()]" position="after"> + <script type="text/javascript" src="/payment_authorize/static/src/js/payment_form.js"></script> + </xpath> + </template> + </data> +</odoo> diff --git a/addons/payment_authorize/views/payment_views.xml b/addons/payment_authorize/views/payment_views.xml new file mode 100644 index 00000000..310d4fbe --- /dev/null +++ b/addons/payment_authorize/views/payment_views.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="acquirer_form_authorize" model="ir.ui.view"> + <field name="name">acquirer.form.authorize</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', '!=', 'authorize')]}"> + <field name="authorize_login" attrs="{'required':[ ('provider', '=', 'authorize'), ('state', '!=', 'disabled')]}"/> + <field name="authorize_transaction_key" password="True" attrs="{'required':[ ('provider', '=', 'authorize'), ('state', '!=', 'disabled')]}"/> + <field name="authorize_signature_key" password="True" attrs="{'required':[ ('provider', '=', 'authorize'), ('state', '!=', 'disabled')]}"/> + <label for="authorize_client_key"/> + <div> + <field name="authorize_client_key" password="True"/> + <button class="oe_link" icon="fa-refresh" type="object" name="action_client_secret" string="Generate Client Key" /> + </div> + <a colspan="2" href="https://www.odoo.com/documentation/14.0/applications/general/payment_acquirers/authorize.html" target="_blank">How to get paid with Authorize.Net</a> + </group> + </xpath> + </field> + </record> + + <record id="token_form_authorize_net" model="ir.ui.view"> + <field name='name'>payment.token.form</field> + <field name='model'>payment.token</field> + <field name="inherit_id" ref="payment.payment_token_form_view"/> + <field name="arch" type="xml"> + <xpath expr='//field[@name="acquirer_ref"]' position='after'> + <field name="authorize_profile" attrs="{'invisible':['|', ('provider', '!=', 'authorize'), ('save_token', '=', 'none')]}"/> + <field name="provider" invisible='1'/> + <field name="save_token" invisible='1'/> + </xpath> + </field> + </record> +</odoo> |
