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/account_payment | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account_payment')
85 files changed, 15653 insertions, 0 deletions
diff --git a/addons/account_payment/__init__.py b/addons/account_payment/__init__.py new file mode 100644 index 00000000..3ea0f0ca --- /dev/null +++ b/addons/account_payment/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models
\ No newline at end of file diff --git a/addons/account_payment/__manifest__.py b/addons/account_payment/__manifest__.py new file mode 100644 index 00000000..a1f8adf6 --- /dev/null +++ b/addons/account_payment/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Payment - Account', + 'category': 'Accounting/Accounting', + 'summary': 'Account and Payment Link and Portal', + 'version': '1.0', + 'description': """Link Account and Payment and add Portal Payment + +Provide tools for account-related payment as well as portal options to +enable payment. + + * UPDATE ME +""", + 'depends': ['payment'], + 'data': [ + 'views/account_portal_templates.xml', + ], + 'installable': True, + 'auto_install': False, + 'license': 'LGPL-3', +} diff --git a/addons/account_payment/controllers/__init__.py b/addons/account_payment/controllers/__init__.py new file mode 100644 index 00000000..f453df57 --- /dev/null +++ b/addons/account_payment/controllers/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import portal +from . import payment
\ No newline at end of file diff --git a/addons/account_payment/controllers/payment.py b/addons/account_payment/controllers/payment.py new file mode 100644 index 00000000..84b90b72 --- /dev/null +++ b/addons/account_payment/controllers/payment.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from werkzeug.urls import url_encode + +from odoo import http, _ +from odoo.addons.portal.controllers.portal import _build_url_w_params +from odoo.addons.payment.controllers.portal import PaymentProcessing +from odoo.http import request, route + + +class PaymentPortal(http.Controller): + + @route('/invoice/pay/<int:invoice_id>/form_tx', type='json', auth="public", website=True) + def invoice_pay_form(self, acquirer_id, invoice_id, save_token=False, access_token=None, **kwargs): + """ Json method that creates a payment.transaction, used to create a + transaction when the user clicks on 'pay now' button on the payment + form. + + :return html: form containing all values related to the acquirer to + redirect customers to the acquirer website """ + invoice_sudo = request.env['account.move'].sudo().browse(invoice_id) + if not invoice_sudo: + return False + + try: + acquirer_id = int(acquirer_id) + except: + return False + + if request.env.user._is_public(): + save_token = False # we avoid to create a token for the public user + + success_url = kwargs.get( + 'success_url', "%s?%s" % (invoice_sudo.access_url, url_encode({'access_token': access_token}) if access_token else '') + ) + vals = { + 'acquirer_id': acquirer_id, + 'return_url': success_url, + } + + if save_token: + vals['type'] = 'form_save' + + transaction = invoice_sudo._create_payment_transaction(vals) + PaymentProcessing.add_payment_transaction(transaction) + + return transaction.render_invoice_button( + invoice_sudo, + submit_txt=_('Pay & Confirm'), + render_values={ + 'type': 'form_save' if save_token else 'form', + 'alias_usage': _('If we store your payment information on our server, subscription payments will be made automatically.'), + } + ) + + @http.route('/invoice/pay/<int:invoice_id>/s2s_token_tx', type='http', auth='public', website=True) + def invoice_pay_token(self, invoice_id, pm_id=None, **kwargs): + """ Use a token to perform a s2s transaction """ + error_url = kwargs.get('error_url', '/my') + access_token = kwargs.get('access_token') + params = {} + if access_token: + params['access_token'] = access_token + + invoice_sudo = request.env['account.move'].sudo().browse(invoice_id).exists() + if not invoice_sudo: + params['error'] = 'pay_invoice_invalid_doc' + return request.redirect(_build_url_w_params(error_url, params)) + + success_url = kwargs.get( + 'success_url', "%s?%s" % (invoice_sudo.access_url, url_encode({'access_token': access_token}) if access_token else '') + ) + try: + token = request.env['payment.token'].sudo().browse(int(pm_id)) + except (ValueError, TypeError): + token = False + token_owner = invoice_sudo.partner_id if request.env.user._is_public() else request.env.user.partner_id + if not token or token.partner_id != token_owner: + params['error'] = 'pay_invoice_invalid_token' + return request.redirect(_build_url_w_params(error_url, params)) + + vals = { + 'payment_token_id': token.id, + 'type': 'server2server', + 'return_url': _build_url_w_params(success_url, params), + } + + tx = invoice_sudo._create_payment_transaction(vals) + PaymentProcessing.add_payment_transaction(tx) + + params['success'] = 'pay_invoice' + return request.redirect('/payment/process') diff --git a/addons/account_payment/controllers/portal.py b/addons/account_payment/controllers/portal.py new file mode 100644 index 00000000..0f2476c0 --- /dev/null +++ b/addons/account_payment/controllers/portal.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.account.controllers.portal import PortalAccount +from odoo.http import request + + +class PortalAccount(PortalAccount): + + def _invoice_get_page_view_values(self, invoice, access_token, **kwargs): + values = super(PortalAccount, self)._invoice_get_page_view_values(invoice, access_token, **kwargs) + payment_inputs = request.env['payment.acquirer']._get_available_payment_input(partner=invoice.partner_id, company=invoice.company_id) + # if not connected (using public user), the method _get_available_payment_input will return public user tokens + is_public_user = request.env.user._is_public() + if is_public_user: + # we should not display payment tokens owned by the public user + payment_inputs.pop('pms', None) + token_count = request.env['payment.token'].sudo().search_count([('acquirer_id.company_id', '=', invoice.company_id.id), + ('partner_id', '=', invoice.partner_id.id), + ]) + values['existing_token'] = token_count > 0 + values.update(payment_inputs) + # if the current user is connected we set partner_id to his partner otherwise we set it as the invoice partner + # we do this to force the creation of payment tokens to the correct partner and avoid token linked to the public user + values['partner_id'] = invoice.partner_id if is_public_user else request.env.user.partner_id, + return values diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot new file mode 100644 index 00000000..d96dcc4e --- /dev/null +++ b/addons/account_payment/i18n/account_payment.pot @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-11-27 14:12+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/af.po b/addons/account_payment/i18n/af.po new file mode 100644 index 00000000..72e06818 --- /dev/null +++ b/addons/account_payment/i18n/af.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Faktuur" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Stand" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po new file mode 100644 index 00000000..39c46750 --- /dev/null +++ b/addons/account_payment/i18n/am.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "ሁኔታው" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po new file mode 100644 index 00000000..126d6c5d --- /dev/null +++ b/addons/account_payment/i18n/ar.po @@ -0,0 +1,210 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Osoul <baruni@osoul.ly>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Sherif Abd Ekmoniem <sherif.tsupport@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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>الشرح: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"سدد الآن</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> سدد الآن" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> مدفوع" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> قيد الانتظار" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> لقد قمت بتسجيل بطاقات ائتمان، سجل الدخول لتتمكن من" +" استخدامهم." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> ملغي</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> في انتظار " +"السداد</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> مقبول</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> مدفوع</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> قيد الانتظار</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "اغلاق" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "لقد انتهيت، تمت معالجة عملية السداد الإلكتروني بنجاح. شكراً لطلبك." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"إذا قمنا بتخزين بيانات عملية دفعك على سيرفراتنا، سيتم سداد قيمة مدفوعات " +"الاشتراك تلقائيًا." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "سداد وتأكيد" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "السداد الآن" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "سدد الآن" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "السداد بـ" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "الحالة" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "حدث خطأ أثناء معالجة عملية السداد: الفاتورة غير صالحة." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"حدث خطأ أثناء معالجة عملية السداد: هناك مشكلة في بيانات البطاقة الإئتمانية." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "حدث خطأ أثناء معالجة عملية السداد: فشلت المعاملة.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"حدث خطأ أثناء معالجة عملية الدفع: بيانات البطاقة الائتمانية غير صالحة." diff --git a/addons/account_payment/i18n/az.po b/addons/account_payment/i18n/az.po new file mode 100644 index 00000000..d278107a --- /dev/null +++ b/addons/account_payment/i18n/az.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:47 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:44 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:22 +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po new file mode 100644 index 00000000..7e29e167 --- /dev/null +++ b/addons/account_payment/i18n/bg.po @@ -0,0 +1,198 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Затвори" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Ако съхраним информацията на плащанията Ви, следващите вноски по абонамента " +"ще се извършват автоматично." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Платете & потвърдете" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Платете сега" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Плати с" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Състояние" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "При обработването на плащането възникна грешка: невалидна фактура." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"При обработването на плащането ви възникна грешка: издаване с потвърждаване " +"на идентификацията на кредитна карта." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"При обработването на плащането възникна грешка: транзакцията не бе " +"успешна.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Имаше грешка при обработката на плащането Ви: невалиден идентификационен " +"номер на кредитната карта." diff --git a/addons/account_payment/i18n/bn.po b/addons/account_payment/i18n/bn.po new file mode 100644 index 00000000..e43efea4 --- /dev/null +++ b/addons/account_payment/i18n/bn.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "বদ্ধ" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po new file mode 100644 index 00000000..c7fc6d9e --- /dev/null +++ b/addons/account_payment/i18n/bs.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "&times;" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:47 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:44 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:22 +#, python-format +msgid "Pay Now" +msgstr "Plati Sad" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po new file mode 100644 index 00000000..a60545a8 --- /dev/null +++ b/addons/account_payment/i18n/ca.po @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Carles Antoli <carlesantoli@hotmail.com>, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Arnau Ros, 2020 +# Martin Trigaux, 2020 +# jabelchi, 2021 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: José Cabrera Lozano <jose.cabrera@edukative.es>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicació: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Paga ara</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Paga ara" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pagat" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pendent" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Tens targetes de crèdit registrades, pots iniciar " +"sessió per a utilitza-les" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancel·lat</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Esperant pel " +"pagament</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autoritzat </span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pagat </span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Invertit</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pendent</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Tancar" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Fet, el teu pagament en línia ha estat processat correctament. Gràcies per " +"la teva comanda. " + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Si desem la informació de pagament en el nostres servidor, les subscripcions" +" de pagament es faran automàticament." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Paga i confirma" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Pagar Ara" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Paga ara" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Paga amb" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estat" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Ha sorgit un error processant el pagament: factura no vàlida" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Ha sorgit un error processant el pagament: problema amb la validació de la " +"targeta de crèdit." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Ha sorgit un error processant el pagament: transacció fallida. <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Ha sorgit un error processant el pagament: ID de targeta de crèdit no vàlid" diff --git a/addons/account_payment/i18n/ckb.po b/addons/account_payment/i18n/ckb.po new file mode 100644 index 00000000..11b98172 --- /dev/null +++ b/addons/account_payment/i18n/ckb.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "داخستن" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "دۆخ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po new file mode 100644 index 00000000..1c3821a6 --- /dev/null +++ b/addons/account_payment/i18n/cs.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# trendspotter, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: karolína schusterová <karolina.schusterova@vdp.sk>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikace: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Zaplatit</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Zaplatit teď" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Zaplaceno" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Čekající" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Máte zaregistrovanou kreditní kartu, můžete se " +"přihlásit, abyste je mohli používat." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Zrušeno</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Čekání na " +"platbu</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizováno</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Zaplaceno</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Obráceně</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Probíhá</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Zavřít" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Hotovo, vaše online platba byla úspěšně zpracována. Děkuji za Vaši " +"objednávku." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Pokud vaše platební informace uložíme na našem serveru, platby předplatného " +"budou prováděny automaticky." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Zaplať a potvrď" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Zaplať nyní" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Zaplať teď" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Platit s" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Stav" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Při zpracování platby došlo k chybě: neplatná faktura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Při zpracování platby došlo k chybě: problém s potvrzením identifikace " +"kreditní karty." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Při zpracování platby došlo k chybě: transakce selhala.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Při zpracování platby došlo k chybě: neplatná identifikace kreditní karty." diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po new file mode 100644 index 00000000..fad04f5c --- /dev/null +++ b/addons/account_payment/i18n/da.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# JonathanStein <jstein@image.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Martin Trigaux, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Kommunikation: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Betal nu</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Betal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Betalt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Afventer" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Du har betalingskort registreret. Log ind for at " +"bruge et gemt kort." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Annulleret</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Afventer " +"betaling</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Godkendt</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Betalt</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Tilbageført</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Afventer</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Luk" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Færdig, Din online betaling er blevet korrekt gennemført. Tak for din ordre." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Hvis vi gemmer dine betalingsoplysninger på vores server, vil " +"abonnementsbetalinger blive foretaget automatisk." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Betal & bekræft" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Betal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Betal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Betal med" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Der opstod en fejl under behandlingen af din betaling: ugyldig faktura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Der opstod en fejl under behandlingen af din betaling: problem med " +"kreditkort ID validering." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Der opstod en fejl under behandlingen af din betaling: transaktionen " +"mislykkedes.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Der opstod en fejl under behandlingen af din betaling: ugyldigt kreditkort " +"ID." diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po new file mode 100644 index 00000000..e3ebb84a --- /dev/null +++ b/addons/account_payment/i18n/de.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Andreas Stauder <andreas.stauder@brain-tec.ch>, 2020 +# Martin Trigaux, 2020 +# Robert Förster <hello@suppliot.eu>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Robert Förster <hello@suppliot.eu>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Mitteilungen: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Jetzt bezahlen</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Jetzt bezahlen" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> bezahlt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> ausstehend" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Sie haben Kreditkarten hinterlegt. Loggen Sie ein " +"um diese zu benutzen." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Abgebrochen</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Zahlung " +"ausstehend</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorisiert</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> bezahlt</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Storniert</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> ausstehend</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Schließen" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Ihre Online-Zahlung wurde erfolgreich verarbeitet. Vielen Dank für Ihre " +"Bestellung." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Wenn Ihre Zahlungsinformationen auf unserem Server gespeichert sind, " +"erfolgen Abonnementszahlungen automatisch." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Bestätigen & Zahlen" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Jetzt kaufen" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Jetzt bezahlen" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Bezahlen mit" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Fehler beim Verarbeiten Ihrer Zahlung: ungültige Rechnung." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Fehler beim Verarbeiten Ihrer Zahlung: Probleme beim Validieren der " +"Kreditkarten-ID." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Fehler beim Verarbeiten Ihrer Zahlung: Transaktion fehlgeschlagen.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "Fehler beim Verarbeiten Ihrer Zahlung: ungültige Kreditkarten-ID." diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po new file mode 100644 index 00000000..1bbd8419 --- /dev/null +++ b/addons/account_payment/i18n/el.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Κλείσιμο" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Εάν αποθηκεύσουμε τα στοιχεία πληρωμής σας στον εξυπηρετητή μας, οι πληρωμές" +" συνδρομών θα πραγματοποιηθούν αυτόματα." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Πληρωμή & Επιβεβαίωση" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Εξόφληση Τώρα" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Πληρωμή με" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Κατάσταση" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας: μη έγκυρο " +"τιμολόγιο." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας: πρόβλημα με την" +" επικύρωση ταυτότητας της πιστωτικής κάρτας." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας: απέτυχε η " +"συναλλαγή.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας: μη έγκυρη " +"ταυτότητα πιστωτικής κάρτας." diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po new file mode 100644 index 00000000..a5fb9088 --- /dev/null +++ b/addons/account_payment/i18n/en_GB.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Invoice" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/eo.po b/addons/account_payment/i18n/eo.po new file mode 100644 index 00000000..23eab5a2 --- /dev/null +++ b/addons/account_payment/i18n/eo.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +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:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po new file mode 100644 index 00000000..ed634d29 --- /dev/null +++ b/addons/account_payment/i18n/es.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicación: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pagar ahora</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pagado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pendientes" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Tienes tarjetas de crédito registradas, puedes " +"Ingresar para usarlas." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Pago pendiente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pagado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Cancelado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pendiente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Cerrar" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Hecho, su pago en línea ha sido procesado con éxito. Gracias por su orden." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Identificación" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Si guardamos la información de tu pago en nuestro servidor, los pagos de la " +"suscripción se realizarán de forma automática." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Pagar y confirmar" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Pagar con" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Se produjo un error al procesar tu pago: factura no válida." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Se produjo un error al procesar tu pago: hubo un problema con la validación " +"de la identificación de la tarjeta de crédito." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Hubo un error al procesar tu pago: la transacción falló. <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Hubo un error al procesar tu pago: Identificación de la tarjeta de crédito " +"invalida." diff --git a/addons/account_payment/i18n/es_BO.po b/addons/account_payment/i18n/es_BO.po new file mode 100644 index 00000000..abbfd4bb --- /dev/null +++ b/addons/account_payment/i18n/es_BO.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po new file mode 100644 index 00000000..354b674f --- /dev/null +++ b/addons/account_payment/i18n/es_CL.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_CO.po b/addons/account_payment/i18n/es_CO.po new file mode 100644 index 00000000..90608cd5 --- /dev/null +++ b/addons/account_payment/i18n/es_CO.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po new file mode 100644 index 00000000..4eb769d7 --- /dev/null +++ b/addons/account_payment/i18n/es_CR.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_DO.po b/addons/account_payment/i18n/es_DO.po new file mode 100644 index 00000000..4fa676f6 --- /dev/null +++ b/addons/account_payment/i18n/es_DO.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po new file mode 100644 index 00000000..5008ebc6 --- /dev/null +++ b/addons/account_payment/i18n/es_EC.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_MX.po b/addons/account_payment/i18n/es_MX.po new file mode 100644 index 00000000..3df59385 --- /dev/null +++ b/addons/account_payment/i18n/es_MX.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicación: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pagar ahora</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pagado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pendientes" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Tiene tarjetas de crédito registradas, puede " +"ingresar para usarlas." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Pago pendiente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pagado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Cancelado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pendiente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Cerrar" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Hecho, su pago en línea ha sido procesado con éxito. Gracias por su orden." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Identificación" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Si guardamos la información de su pago en nuestro servidor, los pagos de la " +"suscripción se realizarán de forma automática." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Pagar y confirmar" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Pagar ahora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Pagar con" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Se produjo un error al procesar su pago: factura no válida." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Se produjo un error al procesar su pago: hubo un problema con la validación " +"de la identificación de la tarjeta de crédito." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Hubo un error al procesar su pago: la transacción falló. <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Hubo un error al procesar su pago: identificación de la tarjeta de crédito " +"invalida." diff --git a/addons/account_payment/i18n/es_PE.po b/addons/account_payment/i18n/es_PE.po new file mode 100644 index 00000000..ccf92ff9 --- /dev/null +++ b/addons/account_payment/i18n/es_PE.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po new file mode 100644 index 00000000..845c57c6 --- /dev/null +++ b/addons/account_payment/i18n/es_PY.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/es_VE.po b/addons/account_payment/i18n/es_VE.po new file mode 100644 index 00000000..9b175f52 --- /dev/null +++ b/addons/account_payment/i18n/es_VE.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po new file mode 100644 index 00000000..5614c319 --- /dev/null +++ b/addons/account_payment/i18n/et.po @@ -0,0 +1,195 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Triine Aavik <triine@avalah.ee>, 2020 +# Marek Pontus, 2020 +# Algo Kärp <algokarp@gmail.com>, 2020 +# Piia Paurson <piia@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Selgitus: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Sulge" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Kui me salvestame teie makseandmed oma serverisse, siis tehakse tellimuste " +"maksed automaatselt." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Maksa ja kinnita" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Maksa kohe" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Maksa kohe" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Maksa" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Olek" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Teie makse töötlemisel tekkis viga: kehtetu arve." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Teie makse töötlemisel tekkis viga: probleem krediitkaardi ID kinnitamisel." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Teie makse töötlemisel tekkis viga: tehing nurjus.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "Teie makse töötlemisel tekkis viga: kehtetu krediitkaardi ID." diff --git a/addons/account_payment/i18n/eu.po b/addons/account_payment/i18n/eu.po new file mode 100644 index 00000000..f117cf57 --- /dev/null +++ b/addons/account_payment/i18n/eu.po @@ -0,0 +1,195 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikazioa: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">Ordaindu orain</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Itxi" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Ordaindu eta baieztatu " + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Ordaindu orain " + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Honekin ordaindu" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Egoera" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Errorea gertatu da ordainketa prozesatzean: faktura baliogabea." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po new file mode 100644 index 00000000..ac6f6ef4 --- /dev/null +++ b/addons/account_payment/i18n/fa.po @@ -0,0 +1,206 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>ارتباطات: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"پرداخت اکنون</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> پرداخت اکنون" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> پرداخت شده" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> در انتظار" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> شما کارتهای اعتباری ثبت کردهاید. شما میتوانید " +"وارد شوید تا بتوانید از آنها استفاده کنید." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> لغو شده</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> در انتظار " +"پرداخت</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> احراز شده</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> پرداخت شده</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> در انتظار</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "بستن" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"انجام شد، پرداخت آنلاین شما با موفقیت پردازش شد. از سفارش شما متشکریم." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "شناسه" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "پرداخت و تایید" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "اکنون بپرداز" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "اکنون بپرداز" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "پرداخت با" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "وضعیت" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "خطایی در حین پردازش پرداخت شما رخ داد: فاکتور نامعتبر." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po new file mode 100644 index 00000000..3a607c0a --- /dev/null +++ b/addons/account_payment/i18n/fi.po @@ -0,0 +1,194 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Mikko Salmela <salmemik@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Viite: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Sulje" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Jos tallennamme maksutietosi palvelimellemme, tilauksen maksut suoritetaan " +"automaattisesti." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Maksa & Hyväksy" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Tilaa" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Maksa nyt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Maksutapa" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Tila" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/fo.po b/addons/account_payment/i18n/fo.po new file mode 100644 index 00000000..17c881f2 --- /dev/null +++ b/addons/account_payment/i18n/fo.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Faktura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po new file mode 100644 index 00000000..566e4360 --- /dev/null +++ b/addons/account_payment/i18n/fr.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Antoine Lorence <antoine.lorence@gmail.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Communication : </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Payer Maintenant</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Payer maintenant" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Payé" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> En attente" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>Vous avez des cartes de crédits enregistrées, vous " +"pouvez vous connecter pour les utiliser." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Annulé</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> En attente de " +"règlement</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorisé</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Payé</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> En attente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Fermer" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Fait, votre paiement en ligne a été enregistré. Merci de votre commande." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Si nous conservons vos informations de paiement sur notre serveur, les " +"paiements des abonnements se feront automatiquement." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Payer et confirmer" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Payer maintenant" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Payer maintenant" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Payer avec" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Statut" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Une erreur s’est produite lors du traitement de votre paiement : facture non" +" valide." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Une erreur s’est produite lors du traitement de votre paiement : problème " +"avec la validation de l’identifiant de la carte bancaire." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Une erreur s’est produite lors du traitement de votre paiement : échec de la" +" transaction.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Une erreur s’est produite lors du traitement de votre paiement : identifiant" +" de carte bancaire non valide." diff --git a/addons/account_payment/i18n/fr_CA.po b/addons/account_payment/i18n/fr_CA.po new file mode 100644 index 00000000..2001130e --- /dev/null +++ b/addons/account_payment/i18n/fr_CA.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Facture" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Statut" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po new file mode 100644 index 00000000..540d442c --- /dev/null +++ b/addons/account_payment/i18n/gl.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factura" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/gu.po b/addons/account_payment/i18n/gu.po new file mode 100644 index 00000000..df222edd --- /dev/null +++ b/addons/account_payment/i18n/gu.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:47 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:44 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:22 +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "સ્થિતિ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/he.po b/addons/account_payment/i18n/he.po new file mode 100644 index 00000000..472530c6 --- /dev/null +++ b/addons/account_payment/i18n/he.po @@ -0,0 +1,206 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>תקשורת: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"שלם עכשיו</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> שלם עכשיו" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> שולם" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> ממתין" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> יש לך כרטיסי אשראי רשומים, אתה יכול להתחבר כדי " +"שתוכל להשתמש בהם." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> בוטל</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> ממתין לתשלום</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> מורשה</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> שולם</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> ממתין</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "סגור" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "בוצע, התשלום המקוון שלך עבר בהצלחה. תודה על הזמנתך." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"אם נשמור את פרטי התשלום שלך בשרת שלנו, תשלומי המנוי יבוצעו באופן אוטומטי." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "שלם ואשר" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "שלם עכשיו" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "שלם עכשיו" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "שלם עם" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "סטטוס" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "אירעה שגיאה בעיבוד התשלום שלך: חיוב לא חוקי." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "אירעה שגיאה בעיבוד התשלום שלך: בעיה עם אימות מזהה כרטיס האשראי." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "אירעה שגיאה בעיבוד התשלום שלך: העסקה נכשלה.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "אירעה שגיאה בעיבוד התשלום שלך: מזהה כרטיס אשראי לא חוקי." diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po new file mode 100644 index 00000000..350e1747 --- /dev/null +++ b/addons/account_payment/i18n/hi.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "बंद" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po new file mode 100644 index 00000000..a59b71c0 --- /dev/null +++ b/addons/account_payment/i18n/hr.po @@ -0,0 +1,205 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Bole <bole@dajmi5.com>, 2020 +# Martin Trigaux, 2020 +# Hrvoje Sić <hrvoje.sic@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hrvoje Sić <hrvoje.sic@gmail.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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikacija: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Plati sad</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-arrow-circle-right\"/> Plati odmah" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-check-circle\"/> Plaćeno" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> U tijeku" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Otkazano</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Čeka plaćanje</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizirano</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Plaćeno</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> U tijeku</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Zatvori" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Gotovo,vaše plaćanje je uspješno obrađeno. Zahvaljujemo na Vašoj narudžbi." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Ako vaše podatke o plaćanju pohranimo na naš server, plaćanja s pretplatom " +"izvršit će se automatski." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Plati i potvrdi" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Plaćanje" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Plati odmah" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Plati putem" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po new file mode 100644 index 00000000..df98c8a5 --- /dev/null +++ b/addons/account_payment/i18n/hu.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Kommunikáció:</b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">Fizetés most</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Fizetés most" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Fizetve" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Függőben" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Megszakítva</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Várakozás a " +"fizetésre</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Hitelesítve</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Fizetve</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Függőben</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Bezárás" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Kész, az Ön online fizetése sikeresen feldolgozva. Köszönjük a " +"megrendelését!" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Ha a fizetési információit eltárolja a szerverünkön, akkor az előfizetések " +"automatikusan kiegyenlítésre kerülnek." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Fizetés & megerősítés" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Fizetés most" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Fizetés most" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Fizetési mód" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Állapot" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Hiba történt a fizetés feldolgozása közben: érvénytelen számla" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Hiba történt a fizetés feldolgozása közben: lebonyolítás sikertelen.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Hiba történt a fizetés feldolgozása közben: érvénytelen bankkártya " +"azonosító." diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po new file mode 100644 index 00000000..22e253e0 --- /dev/null +++ b/addons/account_payment/i18n/id.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Muhammad Syarif <mhdsyarif.ms@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Anda memiliki kartu kredit terdaftar, Anda dapat " +"masuk untuk dapat menggunakannya." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Tutup" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Jika kami menyimpan informasi pembayaran anda dalam server kami, tagihan " +"abonemen akan dibuat secara otomatis." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Bayar & Konfirmasi" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Bayar sekarang" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Bayar dengan" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Terjadi kesalahan ketika memproses tagihan Anda: faktur tidak valid." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Terjadi kesalahan ketika memproses tagihan Anda: ada masalah pada pengesahan" +" ID kartu kredit." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Terjadi kesalahan ketika memproses tagihan Anda: transaksi gagal." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Terjadi kesalahan ketika memproses tagihan Anda: ID kartu kredit tidak " +"valid." diff --git a/addons/account_payment/i18n/is.po b/addons/account_payment/i18n/is.po new file mode 100644 index 00000000..b6eacf87 --- /dev/null +++ b/addons/account_payment/i18n/is.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Birgir Steinarsson <biggboss83@gmail.com>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:47 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:44 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:22 +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Staða" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po new file mode 100644 index 00000000..960fe212 --- /dev/null +++ b/addons/account_payment/i18n/it.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Informazioni: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Paga ora</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Paga ora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pagato" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> In sospeso" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Sono presenti carte di credito registrate, " +"accedere per poterle utilizzare." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Annullato</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> In attesa di " +"pagamento</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizzato</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pagato</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Stornato</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> In sospeso</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Chiudi" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Completato. Il pagamento è stato elaborato correttamente, grazie per aver " +"effettuato l'ordine." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Memorizzando le informazioni di pagamento nei nostri server, gli abbonamenti" +" verranno pagati automaticamente." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Paga e conferma" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Paga ora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Paga ora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Paga con" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Stato" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Errore durante l'elaborazione del pagamento: fattura non valida." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Errore durante l'elaborazione del pagamento: problema di conferma ID della " +"carta di credito." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Errore durante l'elaborazione del pagamento: transazione non riuscita.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Errore durante l'elaborazione del pagamento: ID carta di credito non valido." diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po new file mode 100644 index 00000000..79be7b85 --- /dev/null +++ b/addons/account_payment/i18n/ja.po @@ -0,0 +1,191 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2020 +# Abe Tomohiro <tomohiro@quartile.co>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abe Tomohiro <tomohiro@quartile.co>, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>コミュニケーション: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "支払済" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "保留" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "支払済" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "クローズ" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "支払情報をサーバーに保存すると、定期的な支払が自動的に作成されます。" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "支払と確認" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "今支払う" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "お支払" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "ステータス" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/ka.po b/addons/account_payment/i18n/ka.po new file mode 100644 index 00000000..2e7acee1 --- /dev/null +++ b/addons/account_payment/i18n/ka.po @@ -0,0 +1,191 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "დახურვა" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "მდგომარეობა" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/kab.po b/addons/account_payment/i18n/kab.po new file mode 100644 index 00000000..57caf6c9 --- /dev/null +++ b/addons/account_payment/i18n/kab.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Tafaturt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Addad" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/km.po b/addons/account_payment/i18n/km.po new file mode 100644 index 00000000..b22ec434 --- /dev/null +++ b/addons/account_payment/i18n/km.po @@ -0,0 +1,209 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>ការទំនាក់ទំនង</b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">ការបង់ប្រាក់ភ្លាមៗ</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>ទូទាត់ភ្លាមៗ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>ការបង់ប្រាក់" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>កំពុងរងចំា" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>អ្នកាមានកាឥនទាដែលចុះឈ្មោះរួច " +"ដែលអ្នកអាចប្រើប្រាស់បាន" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\">លុបចោល</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-" +"inline\">ការរងចំាបង់ប្រាក់</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">អនុញ្ញាត</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">ការបង់ប្រាក់</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">កំពង់រងចំា</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "បិទ" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"រួចរាល់សម្រាប់ការបង់ប្រាក់តាមប្រពន្ឋមានទួលបានដំណើរការជោគជ័យ។អគុណរសម្រាប់ការជ្រើសរើសយក" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"ប្រសិនបើយើងរក្សាទុកព័ត៌មានអំពីការទូទាត់របស់អ្នកនៅលើម៉ាស៊ីនមេរបស់យើងការបង់ប្រាក់នឹងត្រូវធ្វើឡើងដោយស្វ័យប្រវត្តិ" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "ការបងប្រាក់ និងការបញ្ជាក់" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "ការបង់ប្រាឥឡូវ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "ការបង់ប្រាក់" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "ការបង់ប្រាក់ភ្ពាប់ជាមួយ" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "ការបង់ប្រាក់សំរាប់ប្រតិបត្តិការ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "ស្ថានភាព" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "មានកំហុសកំពុងដំណើរការការទូទាត់របស់អ្នក: វិក័យប័ត្រមិនត្រឹមត្រូវ។" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"មានកំហុសក្នុងការដំណើរការការទូទាត់របស់អ្នក: " +"ចេញជាមួយសុពលភាពលេខសម្គាល់កាតឥណទាន។" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"មានកំហុសក្នុងការដំណើរការការទូទាត់របស់អ្នក: ប្រតិបត្តិការបានបរាជ័យ<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "មានកំហុសក្នុងការដំណើរការការទូទាត់របស់អ្នក: ប្រតិបត្តិការបានបរាជ័យ" diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po new file mode 100644 index 00000000..602911d4 --- /dev/null +++ b/addons/account_payment/i18n/ko.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# JH CHOI <hwangtog@gmail.com>, 2020 +# Linkup <link-up@naver.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>의사소통 : </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"지불하기</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> 지불하기" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> 지불 완료" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> 보류" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "<i class=\"fa fa-info\"/> 신용 카드가 등록되었습니다. 로그인하여 사용할 수 있습니다." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> 취소됨</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> 결제 대기 중</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> 인증됨</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> 지불 완료</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> 보류</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "마감" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "완료. 귀하의 온라인 결제가 성공적으로 처리되었습니다. 주문해 주셔서 감사합니다." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "서버에 지불 정보를 저장할 경우, 월별로 자동 지불됩니다." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "지불 및 확인" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "지금 지불합니다" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "지불하기" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "결제 방법" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "상태" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "지불 처리 중 오류 발생: 청구서가 잘못되었습니다." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "지불 처리 중 오류 발생: 신용 카드 ID 검증에 문제가 있습니다." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "지불 처리 중 오류 발생: 거래가 실패했습니다.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "지불 처리 중 오류 발생: 신용 카드 ID가 잘못되었습니다." diff --git a/addons/account_payment/i18n/lb.po b/addons/account_payment/i18n/lb.po new file mode 100644 index 00000000..777c2894 --- /dev/null +++ b/addons/account_payment/i18n/lb.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:08+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:21 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/lo.po b/addons/account_payment/i18n/lo.po new file mode 100644 index 00000000..f5805f74 --- /dev/null +++ b/addons/account_payment/i18n/lo.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "ໃບເກັບເງີນ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "ສະພາບ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po new file mode 100644 index 00000000..41436999 --- /dev/null +++ b/addons/account_payment/i18n/lt.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# Arminas Grigonis <arminas@versada.lt>, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Audrius Palenskis <audrius.palenskis@gmail.com>, 2021 +# Antanas Muliuolis <an.muliuolis@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikacija: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Mokėti dabar</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>Mokėti dabar" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Apmokėta" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Laukia" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>Turite registruotų kredito kortelių, galite " +"prisijungti ir naudoti jas." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Atšaukta</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Laukia mokėjimo</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Patvirtinta</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Apmokėta</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">Laukia</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Uždaryti" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "Jūsų mokėjimas buvo sėkmingai apdorotas. Dėkojame už užsakymą." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Jei išsaugosime jūsų mokėjimo informaciją savo serveryje, abonementiniai " +"mokėjimai bus atlikti automatiškai." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Mokėti ir patvirtinti" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Apmokėti dabar" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Apmokėti dabar" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Apmokėti su" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Būsena" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Įvyko klaida apdorojant jūsų mokėjimą: netinkama sąskaita-faktūra." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Įvyko klaida apdorojant jūsų mokėjimą: problema dėl kredito kortelės ID " +"patvirtinimo." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Įvyko klaida apdorojant jūsų mokėjimą: operacija nepavyko.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Įvyko klaida apdorojant jūsų mokėjimą: netinkamas kreditinės kortelės ID." diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po new file mode 100644 index 00000000..bedf9830 --- /dev/null +++ b/addons/account_payment/i18n/lv.po @@ -0,0 +1,190 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Aizvērt" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Apmaksāt tagad" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksājuma darījums" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Statuss" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po new file mode 100644 index 00000000..8724a4f0 --- /dev/null +++ b/addons/account_payment/i18n/mk.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Фактура" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Статус" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po new file mode 100644 index 00000000..b7670505 --- /dev/null +++ b/addons/account_payment/i18n/mn.po @@ -0,0 +1,209 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Холбох лавлагаа: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Одоо төлөх</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Одоо төлөх" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Төлөх" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Хүлээгдэж буй" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Таны кредит картаа бүртгэлтэй байна. Та нэвтэрч " +"орсоноор түүнийг ашиглах боломжтой." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Цуцлагдсан</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Төлөлт хүлээж " +"буй</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Эрх бүхий</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Төлсөн</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Хүлээгдэж буй</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Хаах" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Дууслаа, таны онлайн төлбөр амжилттай хийгдлээ. Захиалгаа баталгаажуулсанд " +"тань баярлалаа." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Хэрэв бид таны төлбөрийн мэдээллийг өөрсдийн сервер дээр хадгалвал, энэ " +"үйлчилгээний төлбөр автоматаар нэхэмжлэгдэнэ." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Төлөх & Батлах" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Одоо төлөх" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Одоо төлөх" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Төлөх" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Төлөв" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Таны төлбөрийг гүйцэлдүүлэхэд алдаа үүслээ: нэхэмжлэл хүчингүй." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Таны төлбөрийг гүйцэлдүүлэхэд алдаа үүслээ: кредит картын ID баталгаажилт " +"асуудалтай." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Таны төлбөрийг гүйцэлдүүлэхэд алдаа үүслээ: гүйлгээ амжилтгүй.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "Таны төлбөрийг гүйцэлдүүлэхэд алдаа үүслээ: хүчингүй кредит карт." diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po new file mode 100644 index 00000000..01b37229 --- /dev/null +++ b/addons/account_payment/i18n/nb.po @@ -0,0 +1,208 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Jorunn D. Newth, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# Fredrik Ahlsen <fredrik@gdx.no>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Kommunikasjon: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Betal nå</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Betal nå" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Betalt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Avventende" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>Du har registrerte bankkort. Logg inn for å bruke " +"dem." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Kansellert</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Venter på " +"betaling</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorisert</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Betalt</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Avventende</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Lukk" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "Fullført. Din betaling er gjennomført. Takk for din ordre." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Hvis vi lagrer betalingsinformasjonen din på vår server, vil " +"abonnementsbetalinger gjøres automatisk." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Betal og bekreft" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Betal nå" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Betal nå" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Betal med" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Feil under betaling: Ugyldig faktura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "Feil under betaling: Problem ved validering av kort." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Feil under betaling: Transaksjonen mislyktes.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "Feil under betaling: Ugyldig kort-id." diff --git a/addons/account_payment/i18n/ne.po b/addons/account_payment/i18n/ne.po new file mode 100644 index 00000000..84455a40 --- /dev/null +++ b/addons/account_payment/i18n/ne.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po new file mode 100644 index 00000000..8ed8b65e --- /dev/null +++ b/addons/account_payment/i18n/nl.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Gunther Clauwaert <gclauwae@hotmail.com>, 2020 +# Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Communicatie: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Betaal " +"nu</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-arrow-circle-right\"/> Betaal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-check-circle\"/> Betaald" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-check-circle\"/> In afwachting" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> U heeft geregistreerde creditcards. U kunt " +"inloggen en deze gebruiken." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Geannuleerd</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Wachtend op " +"betaling</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Goedgekeurd </span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Betaald</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Omgekeerd</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> In afwachting</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Sluiten" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "Gelukt, uw online betaling is geslaagd. Bedankt voor uw order." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Als we uw betalingsinformatie opslaan op onze server worden " +"abonnementsbetalingen automatisch gemaakt." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Betaal & Bevestig" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Betaal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Betaal nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Betaal met" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Er was een fout met het verwerken van uw betalingen: incorrecte factuur." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Er was een fout met het verwerken van uw betalingen: fout in creditcard " +"validatie." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Er was een fout met het verwerken van uw betalingen: transactie " +"mislukt.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Er was een fout met het verwerken van uw betalingen: foute creditcard ID." diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po new file mode 100644 index 00000000..5a8fef3b --- /dev/null +++ b/addons/account_payment/i18n/nl_BE.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Factuur" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po new file mode 100644 index 00000000..aac0a8bf --- /dev/null +++ b/addons/account_payment/i18n/pl.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Patryk Openglobe <patryk.walentowicz@openglobe.pl>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Natalia Gros <nag@odoo.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikacja: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">Zapłać Teraz</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>Zapłać Teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Zapłacone" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Oczekujące" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Masz zarejestrowaną kartę kredytową, możesz się " +"zalogować, aby móc z niej korzystać." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\">Anulowane</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Oczekiwanie na " +"płatność</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Autoryzowane</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Zapłacone</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">Oczekujące</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Zamknij" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Ukończono, twoja płatność online została pomyślnie przetworzona. Dziękujemy " +"za złożenie zamówienia." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Jeśli przechowujemy informacje dotyczące płatności na naszym serwerze, " +"płatności za subskrypcję będą dokonywane automatycznie." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Zapłać i potwierdź" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Zapłać teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Zapłać teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Zapłać przez" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Wystąpił błąd podczas przetwarzania płatności: nieprawidłowa faktura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Podczas przetwarzania Państwa płatności wystąpił błąd: problem z weryfikacją" +" numeru karty kredytowej." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Podczas przetwarzania płatności wystąpił błąd: transakcja nie powiodła " +"się.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Wystąpił błąd podczas przetwarzania płatności: nieprawidłowy identyfikator " +"karty kredytowej." diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po new file mode 100644 index 00000000..d288842c --- /dev/null +++ b/addons/account_payment/i18n/pt.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Manuela Silva <manuelarodsilva@gmail.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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicação:</b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">Pagar Agora</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>Pagar Agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Pago" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Pendente" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Tem cartões de créditos registados, pode iniciar a" +" sessão para os poder utilizar." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\">Cancelado </span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">À Espera de Pagamento " +"</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Autorizado</span></span> " + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Pago</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">Pendente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Fechar" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Terminado, Os seus pagamentos online foram processados com sucesso. Obrigado" +" pela sua encomenda." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Se nós guardarmos a sua informação de pagamento no nosso servidor, os " +"pagamentos de subscrição serão efetuados automaticamente." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Pagar e Confirmar" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Pagar Agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Pagar agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Pagar com" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Estado" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Ocorreu um erro ao processar o seu pagamento: fatura inválida." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Ocorreu um erro ao processar o seu pagamento: problema com a validação da " +"Id. do cartão de crédito." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Ocorreu um erro ao processar o seu pagamento: transação falhou.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Ocorreu um erro ao processar o seu pagamento: Id. do cartão de crédito " +"inválida." diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po new file mode 100644 index 00000000..b3bf1f99 --- /dev/null +++ b/addons/account_payment/i18n/pt_BR.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# danimaribeiro <danimaribeiro@gmail.com>, 2020 +# Marcel Savegnago <marcel.savegnago@gmail.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# nle_odoo, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Raphael Rodrigues <raphael0608@gmail.com>, 2020 +# mariana rodrigues <mariana12v@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Éder Brito <britoederr@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicação: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pagar Agora</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pagar Agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pago" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Pendente" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Você tem cartão de crédito cadastrado, você pode " +"fazer o login para poder usá-los." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Aguardando por " +"Pagamento</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizado</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pago</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Revertido</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pendente</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Fechar" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Pronto, seu pagamento online foi processado com sucesso. Obrigado pelo seu " +"pedido." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Se nós armazenarmos suas informações de pagamento em nosso servidor, os " +"pagamentos de assinaturas serão feitos automaticamente." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Pagar & Confirmar" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Pagar agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Pagar agora" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Pagar com" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Situação" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Ocorreu um erro ao processar seu pagamento: fatura inválida." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Ocorreu um erro no processamento do seu pagamento: problema com a validação " +"da ID do cartão de crédito." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Ocorreu um erro no processamento do seu pagamento: a transação falhou." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Ocorreu um erro no processamento do seu pagamento: ID do cartão de crédito " +"inválido." diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po new file mode 100644 index 00000000..be090db0 --- /dev/null +++ b/addons/account_payment/i18n/ro.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Comunicare:</b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">Achită acum</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>Achită acum" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Plătit" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>În așteptare" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>Aveți înregistrate carduri de credit, puteți să vă " +"autentificați pentru a le putea utiliza." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\">Anulat</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Se așteaptă " +"plata</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Autorizat</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">Plătit</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">În așteptare</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Închide" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Finalizat, plata online a fost procesată cu succes. Vă mulțumim pentru " +"comanda dumneavoastră." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Dacă stocăm informațiile dvs. de plată pe serverul nostru, plățile pentru " +"abonamente vor fi efectuate automat." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Plătiți & Confirmați" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Achită acum" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Achită acum" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Modalitatea de plată " + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Stare" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "A apărut o eroare la procesarea plății: factură invalidă." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"A apărut o eroare la procesarea plății: problemă la validarea ID-ului " +"cardului de credit." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "A apărut o eroare la procesarea plății: tranzacție eșuată<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "A apărut o eroare la procesarea plății: ID card de credit invalid." diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po new file mode 100644 index 00000000..4721aa74 --- /dev/null +++ b/addons/account_payment/i18n/ru.po @@ -0,0 +1,218 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Ivan Yelizariev <yelizariev@itpp.dev>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Oleg Kuryan <oleg@ventor.tech>, 2020 +# Константин Коровин <korovin74@gmail.com>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>связь:</b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-" +"inline\">оплатить сейчас</span></i>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>оплатить сейчас</i>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>оплачено</i>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>Ожидает рассмотрения</i>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/>Вы зарегистрировали кредитную карточку, вы можете " +"войти в систему, чтобы иметь возможность ее использовать.</i>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\">закрыто</span></i></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\">Ожидает " +"оплату</span></i></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">авторизовано</span></i></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">оплачено</span></i></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">Ожидает рассмотрения</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Закрыть" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "Выполнено, ваш онлайн-платеж успешно обработан. Спасибо за ваш заказ." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Если мы сохраняем вашу платежную информацию на нашем сервере, то подписка на" +" платежи будут производиться автоматически." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Оплатить и подтвердить" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Оплатить сейчас" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Оплатить сейчас" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr " Оплатить" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Статус" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Во время обработки вашего платежа произошла ошибка: недействительный счет-" +"фактура." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Во время обработки вашего платежа возникла ошибка: проверьте идентификатор " +"кредитной карты." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Во время обработки вашего платежа произошла ошибка: транзакция не выполнено." +" <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Во время обработки вашего платежа произошла ошибка: недействительный " +"идентификатор кредитной карты." diff --git a/addons/account_payment/i18n/si.po b/addons/account_payment/i18n/si.po new file mode 100644 index 00000000..e3860a3b --- /dev/null +++ b/addons/account_payment/i18n/si.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/sk.po b/addons/account_payment/i18n/sk.po new file mode 100644 index 00000000..bb32b950 --- /dev/null +++ b/addons/account_payment/i18n/sk.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Robert Kirschner <robertkirschner@yahoo.com>, 2020 +# Martin Trigaux, 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 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komunikácia: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Zaplatiť teraz</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Zaplatiť teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Zaplatené" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Prebieha" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Vašu kartu ste zaregistrovali, môžete sa " +"prihlásiť, aby ste ju mohli použiť." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Zrušené</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Čakanie na " +"platbu</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Autorizované</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Platené</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Prebieha</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Zatvoriť" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Hotovo, vaša platba bola úspešne spracovaná. Ďakujeme za vašu objednávku." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Ak budeme ukladať vaše platobné údaje na našom serveri, budú platby odberu " +"vykonané automaticky." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Zaplatiť a Potvrdiť" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Zaplatiť teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Zaplatiť teraz" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Platba cez" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Stav" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Vyskytla sa chyba pri spracovaní vašej platby: neplatná faktúra." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Vyskytla sa chyba pri spracovaní vašej platby: problém pri overení ID " +"kreditnej karty" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Vyskytla sa chyba pri spracovaní vašej platby: transakcia zlyhala. <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Vyskytla sa chyba pri spracovaní vašej platby: neplatné ID kreditnej karty" diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po new file mode 100644 index 00000000..b9ac68b5 --- /dev/null +++ b/addons/account_payment/i18n/sl.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Komuniciranje: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Plačaj zdaj</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Plačaj zdaj" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Plačano" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> V čakanju" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Prekinjeno</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Čakanje na " +"plačilo</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Pooblaščen</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Plačan</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> V čakanju</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Zaključi" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Končano, vaše spletno plačilo je bilo uspešno obdelano. Hvala za vaše " +"naročilo." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Plačaj in potrdi" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Plačaj takoj" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Plačaj takoj" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Plačaj preko" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Pri obdelavi vašega plačila je prišlo do napake: težava s preverjanjem " +"veljavnosti ID-ja kreditne kartice." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Pri obdelavi plačila je prišlo do napake: transakcija ni uspela.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Pri obdelavi vašega plačila je prišlo do napake: neveljaven ID kreditne " +"kartice." diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po new file mode 100644 index 00000000..8349ec96 --- /dev/null +++ b/addons/account_payment/i18n/sq.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +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" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "Invoice" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Statusi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po new file mode 100644 index 00000000..1c5f3366 --- /dev/null +++ b/addons/account_payment/i18n/sr.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "&times;" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:47 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:44 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:22 +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po new file mode 100644 index 00000000..4356eb24 --- /dev/null +++ b/addons/account_payment/i18n/sr@latin.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +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: account_payment +#: code:addons/account_payment/models/payment.py:61 +#, python-format +msgid "<%s> transaction (%s) invoice confirmation failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:45 +#, python-format +msgid "<%s> transaction (%s) failed : <%s>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:52 +#, python-format +msgid "<%s> transaction (%s) invalid state : %s" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"hidden-xs\"> Pay " +"Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-info orders_label_text_align\"><i class=\"fa fa-fw" +" fa-clock-o\"/> Waiting</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "" +"<span class=\"label label-success orders_label_text_align\"><i class=\"fa " +"fa-fw fa-check\"/> Done</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_report +msgid "<strong>Transactions</strong>" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:53 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_account_invoice +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction_account_invoice_id +msgid "Invoice" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "Invoice successfully paid." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_id +msgid "Last Transaction" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_count +msgid "Number of payment transactions" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:50 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:119 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_acquirer_id +msgid "Payment Acquirer" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/account_invoice.py:28 +#, python-format +msgid "Payment Transactions" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: impossible to validate invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice state." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: transaction amount issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction issue.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_account_invoice_payment_tx_ids +#: model_terms:ir.ui.view,arch_db:account_payment.account_invoice_view_form_inherit_payment +msgid "Transactions" +msgstr "" diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po new file mode 100644 index 00000000..64b83f0e --- /dev/null +++ b/addons/account_payment/i18n/sv.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2021 +# Chrille Hedberg <hedberg.chrille@gmail.com>, 2021 +# fah_odoo <fah@odoo.com>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Simon Strömberg <simon.stromberg@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Simon Strömberg <simon.stromberg@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Meddelande: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Betala direkt</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Betala direkt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Betald" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Utestående" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Du har registererade kreditkort, du kan logga in " +"för att använda använda dem. " + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Avbruten</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Väntar på " +"betalning</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Godkänd</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Betald</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Omvänd</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Utestående</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Stäng" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "Klart, din onlinebetalning har behandlats. Tack för din beställning." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Om vi lagrar din betalningsinformation på vår server kommer " +"prenumerationsbetalningar att genomföras automatiskt." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Betala och bekräfta" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Betala nu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Betala direkt" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Betala med" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Status" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Det uppstod ett fel vid behandlingen av din betalning: ogiltig faktura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Det uppstod ett fel vid behandlingen av din betalning: problem med " +"validering av kreditkortets ID." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Det uppstod ett fel vid behandlingen av din betalning: transaktionen " +"misslyckades.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Det uppstod ett fel vid behandlingen av din betalning: ogiltigt kreditkorts-" +"ID." diff --git a/addons/account_payment/i18n/th.po b/addons/account_payment/i18n/th.po new file mode 100644 index 00000000..7494ad6a --- /dev/null +++ b/addons/account_payment/i18n/th.po @@ -0,0 +1,190 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "ปิด" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "รหัส" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "ชำระและยืนยัน" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "ชำระเดี๋ยวนี้" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "ธุรกรรมการชำระเงิน" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "สถานะ" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po new file mode 100644 index 00000000..184deb15 --- /dev/null +++ b/addons/account_payment/i18n/tr.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Hakan ıı, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Saban Yildiz <sabany@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 2020\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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>İletişim: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Şimdi Öde</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Şimdi Öde" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Ödendi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Bekliyor" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Kayıtlı bir kredi kartınız var, kullanabilmek için" +" giriş yapabilirsiniz." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> İptal Edildi</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Ödeme " +"Bekleniyor</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Yetkili </span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Ödendi</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Bekliyor</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Kapat" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Tamam, çevrimiçi ödemeniz başarıyla işlendi. Siparişiniz için teşekkür " +"ederiz." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Ödeme bilgilerinizi sunucumuzda saklarsak, abonelik ödemeleri otomatik " +"olarak yapılacaktır." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Ödeme & Onaylama" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Şimdi Öde" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Şimdi Öde" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Öde" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Durumu" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Ödeme işlemi sırasında bir hata oluştu: geçersiz fatura." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Ödeme işlemi sırasında bir hata oluştu: Kredi kart ID onaylama sorunu." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Ödeme işlemi sırasında bir sorun oluştu: işlem başarısız. <br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "Ödeme işlemi sırasında bir problem oluştu: Geçersiz kredi kartı ID'si" diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po new file mode 100644 index 00000000..af8ab7da --- /dev/null +++ b/addons/account_payment/i18n/uk.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Bohdan Lisnenko, 2020 +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Зв'язок: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Оплатити зараз</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Оплатити зараз" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Оплачено" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Очікує на розгляд" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Ви зареєстрували кредитну картку, ви можете увійти" +" в систему, щоби мати можливість її використовувати." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Закрито</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Очікує на " +"оплату</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Авторизовано</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Оплачено</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Повернено</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Очікує на розгляд</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Закрити" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Виконано, ваш онлайн-платіж успішно оброблено. Дякуємо за ваше замовлення." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"При збереженні ваших платіжних реквізитів на нашому сервері, абонентська " +"плата зніматиметься автоматично." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Оплатити і підтвердити" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Оплатити зараз" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Оплатити зараз" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Оплатити через" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Статус" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" +"Під час обробки вашого платежу сталася помилка: недійсний рахунок-фактура." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Під час обробки вашого платежу виникла помилка: перевірте ID кредитної " +"картки." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" +"Під час обробки вашого платежу сталася помилка: транзакція не виконана.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Під час обробки вашого платежу сталася помилка: недійсний ID кредитної " +"картки." diff --git a/addons/account_payment/i18n/ur.po b/addons/account_payment/i18n/ur.po new file mode 100644 index 00000000..b3a037f2 --- /dev/null +++ b/addons/account_payment/i18n/ur.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po new file mode 100644 index 00000000..a31932da --- /dev/null +++ b/addons/account_payment/i18n/vi.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Duy BQ <duybq86@gmail.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020\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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>Trao đổi: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Trả ngay</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Trả ngay" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Đã trả" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> Đang đợi" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "" +"<i class=\"fa fa-info\"/> Bạn đã đăng ký thẻ tín dụng, bạn có thể đăng nhập " +"để có thể sử dụng chúng." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Đã hủy</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Đang đợi thanh " +"toán</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Đã xác thực</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Đã trả</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Đang đợi</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "Đóng" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "" +"Đã hoàn tất,thanh toán trực tuyến của bạn đã được xử lý thành công. Cảm ơn " +"bạn đã đặt hàng." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "" +"Nếu chúng tôi lưu thông tin thanh toán của bạn trên hệ thống của chúng tôi, " +"các thanh toán thuê bao sẽ được tự động thực hiện." + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "Thanh toán & Xác nhận" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "Thanh toán Ngay" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "Trả ngay" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "Thanh toán qua" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "Trạng thái" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "Đã xảy ra lỗi khi xử lý thanh toán của bạn: hóa đơn không hợp lệ." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "" +"Đã xảy ra lỗi khi xử lý thanh toán của bạn: ID thẻ tín dụng không hợp lệ." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "Đã xảy ra lỗi khi xử lý thanh toán của bạn: giao dịch bị lỗi.<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "" +"Đã xảy ra lỗi khi xử lý thanh toán của bạn: ID thẻ tín dụng không hợp lệ." diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po new file mode 100644 index 00000000..1cb7c2de --- /dev/null +++ b/addons/account_payment/i18n/zh_CN.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# Martin Trigaux, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# bower Guo <124358678@qq.com>, 2020 +# neter ji <jifuyi@qq.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: liAnGjiA <liangjia@qq.com>, 2021\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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>订单号: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"立即支付</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>立即支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> 已付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>待定" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "<i class=\"fa fa-info\"/> 登记你的信用卡之后你就可以登录后并使用." + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> 已取消</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> 应付</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">已授权</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> 已付</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">反</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">待定</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "关闭" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "已完成,您的在线付款已成功处理完毕。 感谢您的订购。" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "如果我们在服务器存储你的支付信息,订阅支付将自动执行。" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "支付&确认" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "立即支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "立即支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "支付方式" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "状态" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "您有一个付款的错误:无效结算单。" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "您有一个付款的错误:信用卡身份验证问题。" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "您有一个付款的错误:交易失败<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "您有一个付款的错误:无效的信用卡号" diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po new file mode 100644 index 00000000..3d5609ec --- /dev/null +++ b/addons/account_payment/i18n/zh_TW.po @@ -0,0 +1,200 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:12+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+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: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "<b>Communication: </b>" +msgstr "<b>資料傳輸: </b>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"Pay Now</span>" +msgstr "" +"<i class=\"fa fa-arrow-circle-right\"/><span class=\"d-none d-md-inline\"> " +"立即支付</span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-arrow-circle-right\"/> Pay Now" +msgstr "<i class=\"fa fa-fw fa-arrow-circle-right\"/>立即支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Paid" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/> 已完成支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "<i class=\"fa fa-fw fa-check-circle\"/> Pending" +msgstr "<i class=\"fa fa-fw fa-check-circle\"/>等待狀態" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_page_inherit_payment +msgid "" +"<i class=\"fa fa-info\"/> You have credits card registered, you can log-in " +"to be able to use them." +msgstr "<i class=\"fa fa-info\"/> 登記您的信用卡之後您就可以登錄後並使用" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> Cancelled</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-danger\"><i class=\"fa fa-fw fa-" +"remove\"/><span class=\"d-none d-md-inline\"> 已取消</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> Waiting for " +"Payment</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-info\"><i class=\"fa fa-fw fa-" +"clock-o\"/><span class=\"d-none d-md-inline\"> 等待支付</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Authorized</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-primary\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\">已授權</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Paid</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> 已完成支付</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-success\"><i class=\"fa fa-fw fa-" +"check\"/><span class=\"d-none d-md-inline\"> Reversed</span></span>" +msgstr "" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\"> Pending</span></span>" +msgstr "" +"<span class=\"badge badge-pill badge-warning\"><span class=\"d-none d-md-" +"inline\">等待狀態</span></span>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Close" +msgstr "關閉" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_success +msgid "" +"Done, your online payment has been successfully processed. Thank you for " +"your order." +msgstr "已完成,您的線上付款已成功處理完畢。 謝謝您的訂單。" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "" +"If we store your payment information on our server, subscription payments " +"will be made automatically." +msgstr "如果我們在伺服器存儲您的支付資訊,將自動支付訂閱。" + +#. module: account_payment +#: model:ir.model.fields,field_description:account_payment.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: account_payment +#: code:addons/account_payment/controllers/payment.py:0 +#, python-format +msgid "Pay & Confirm" +msgstr "支付和確認" + +#. module: account_payment +#: code:addons/account_payment/models/payment.py:0 +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +#, python-format +msgid "Pay Now" +msgstr "立即支付" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Pay now" +msgstr "立即付款" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_payment +msgid "Pay with" +msgstr "請選擇支付方式" + +#. module: account_payment +#: model:ir.model,name:account_payment.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_my_invoices_payment +msgid "Status" +msgstr "狀態" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: invalid invoice." +msgstr "處理您的付款時出現一處錯誤:無效發票。" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "" +"There was an error processing your payment: issue with credit card ID " +"validation." +msgstr "處理您的付款時有一個錯誤:信用卡身份驗證問題。" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was an error processing your payment: transaction failed.<br/>" +msgstr "處理您的付款時有一個錯誤:交易失敗。<br/>" + +#. module: account_payment +#: model_terms:ir.ui.view,arch_db:account_payment.portal_invoice_error +msgid "There was en error processing your payment: invalid credit card ID." +msgstr "您有一個付款的錯誤:無效的信用卡號。" diff --git a/addons/account_payment/models/__init__.py b/addons/account_payment/models/__init__.py new file mode 100644 index 00000000..2ec5b9cd --- /dev/null +++ b/addons/account_payment/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import payment diff --git a/addons/account_payment/models/payment.py b/addons/account_payment/models/payment.py new file mode 100644 index 00000000..202afcaf --- /dev/null +++ b/addons/account_payment/models/payment.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import logging + +from odoo import fields, models, _ +from odoo.tools import float_compare + +_logger = logging.getLogger(__name__) + + +class PaymentTransaction(models.Model): + _inherit = 'payment.transaction' + + def render_invoice_button(self, invoice, submit_txt=None, render_values=None): + values = { + 'partner_id': invoice.partner_id.id, + 'type': self.type, + } + if render_values: + values.update(render_values) + return self.acquirer_id.with_context(submit_class='btn btn-primary', submit_txt=submit_txt or _('Pay Now')).sudo().render( + self.reference, + invoice.amount_residual, + invoice.currency_id.id, + values=values, + ) diff --git a/addons/account_payment/views/account_portal_templates.xml b/addons/account_payment/views/account_portal_templates.xml new file mode 100644 index 00000000..5edfdd04 --- /dev/null +++ b/addons/account_payment/views/account_portal_templates.xml @@ -0,0 +1,148 @@ +<odoo> + <template id="portal_my_invoices_payment" name="Payment on My Invoices" inherit_id="account.portal_my_invoices"> + <xpath expr="//t[@t-call='portal.portal_table']/thead/tr/th[last()]" position="before"> + <th class="text-center">Status</th> + </xpath> + <xpath expr="//t[@t-foreach='invoices']/tr/td[last()]" position="before"> + <td class="text-center"> + <t t-set="tx_ids" t-value="invoice.transaction_ids.filtered(lambda tx: tx.state in ('pending', 'authorized', 'done'))"/> + <t t-set="pending_manual_txs" t-value="tx_ids.filtered(lambda tx: tx.state == 'pending' and tx.acquirer_id.provider in ('transfer', 'manual'))"/> + <a t-if="invoice.state == 'posted' and invoice.payment_state in ('not_paid', 'partial') and invoice.amount_total and invoice.move_type == 'out_invoice' and (pending_manual_txs or not tx_ids or invoice.amount_residual)" + t-att-href="invoice.get_portal_url(anchor='portal_pay')" title="Pay Now" aria-label="Pay now" class="btn btn-sm btn-primary" role="button"> + <i class="fa fa-arrow-circle-right"/><span class='d-none d-md-inline'> Pay Now</span> + </a> + </td> + </xpath> + <xpath expr="//t[@t-foreach='invoices']/tr/td[hasclass('tx_status')]" position="replace"> + <t t-set="last_tx" t-value="invoice.get_portal_last_transaction()"/> + <td class="tx_status text-center"> + <t t-if="invoice.state == 'posted' and invoice.payment_state in ('not_paid', 'partial') and (last_tx.state not in ['pending', 'authorized', 'done', 'cancel'] or (last_tx.state == 'pending' and last_tx.acquirer_id.provider in ('transfer', 'manual')))"> + <span class="badge badge-pill badge-info"><i class="fa fa-fw fa-clock-o"></i><span class="d-none d-md-inline"> Waiting for Payment</span></span> + </t> + <t t-if="invoice.state == 'posted' and last_tx.state == 'authorized'"> + <span class="badge badge-pill badge-primary"><i class="fa fa-fw fa-check"/><span class="d-none d-md-inline"> Authorized</span></span> + </t> + <t t-if="invoice.state == 'posted' and last_tx.state == 'pending' and last_tx.acquirer_id.provider not in ('transfer', 'manual')"> + <span class="badge badge-pill badge-warning"><span class="d-none d-md-inline"> Pending</span></span> + </t> + <t t-if="invoice.state == 'posted' and invoice.payment_state in ('paid', 'in_payment') or last_tx.state == 'done'"> + <span class="badge badge-pill badge-success"><i class="fa fa-fw fa-check"></i><span class="d-none d-md-inline"> Paid</span></span> + </t> + <t t-if="invoice.state == 'posted' and invoice.payment_state == 'reversed'"> + <span class="badge badge-pill badge-success"><i class="fa fa-fw fa-check"></i><span class="d-none d-md-inline"> Reversed</span></span> + </t> + <t t-if="invoice.state == 'cancel'"> + <span class="badge badge-pill badge-danger"><i class="fa fa-fw fa-remove"></i><span class="d-none d-md-inline"> Cancelled</span></span> + </t> + </td> + </xpath> + </template> + + <template id="portal_invoice_payment" name="Invoice Payment"> + <div class="row" t-if="(invoice.amount_residual or not tx_ids) and invoice.state == 'posted' and invoice.payment_state in ('not_paid', 'partial') and invoice.amount_total" id="portal_pay"> + <div class="modal fade" id="pay_with" role="dialog"> + <div class="modal-dialog"> + <div class="modal-content"> + <div class="modal-header"> + <h3 class="modal-title">Pay with</h3> + <button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button> + </div> + <div class="modal-body"> + <div t-if="pms or acquirers" id="payment_method" class="text-left col-md-13"> + <t t-call="payment.payment_tokens_list"> + <t t-set="mode" t-value="'payment'"/> + <t t-set="partner_id" t-value="invoice.partner_id.id if request.env.user._is_public() else request.env.user.partner_id.id"/> + <t t-set="success_url" t-value="invoice.get_portal_url()"/> + <t t-set="error_url" t-value="invoice.get_portal_url()"/> + <t t-set="access_token" t-value="access_token or ''"/> + <t t-set="callback_method" t-value="''"/> + <t t-set="form_action" t-value="'/invoice/pay/' + str(invoice.id) + '/s2s_token_tx/'"/> + <t t-set="prepare_tx_url" t-value="'/invoice/pay/' + str(invoice.id) + '/form_tx/'"/> + <t t-set="submit_txt">Pay Now</t> + <t t-set="icon_class" t-value="'fa-lock'"/> + </t> + </div> + </div> + </div> + </div> + </div> + </div> + </template> + + <template id="portal_invoice_page_inherit_payment" name="Payment on My Invoices" inherit_id="account.portal_invoice_page"> + <xpath expr="//t[@t-call='portal.portal_record_sidebar']//div[hasclass('o_download_pdf')]" position="before"> + <t t-set="tx_ids" t-value="invoice.transaction_ids.filtered(lambda tx: tx.state in ('pending', 'authorized', 'done'))"/> + <t t-set="pending_manual_txs" t-value="tx_ids.filtered(lambda tx: tx.state == 'pending' and tx.acquirer_id.provider in ('transfer', 'manual'))"/> + <div> + <a href="#" t-if="invoice.state == 'posted' and invoice.payment_state in ('not_paid', 'partial') and invoice.amount_total and invoice.move_type == 'out_invoice' and (pending_manual_txs or not tx_ids or invoice.amount_residual)" + + class="btn btn-primary btn-block mb-2" data-toggle="modal" data-target="#pay_with"> + <i class="fa fa-fw fa-arrow-circle-right"/> Pay Now + </a> + <div t-if="tx_ids and not pending_manual_txs and not invoice.amount_residual and invoice.payment_state not in ('paid', 'in_payment')" class="alert alert-info py-1 mb-2" > + <i class="fa fa-fw fa-check-circle"/> Pending + </div> + <div t-if="invoice.payment_state in ('paid', 'in_payment')" class="alert alert-success py-1 mb-2" > + <i class="fa fa-fw fa-check-circle"/> Paid + </div> + </div> + </xpath> + <xpath expr="//div[@id='invoice_content']//div[hasclass('o_portal_html_view')]" position="before"> + <div t-if="invoice.transaction_ids and invoice.amount_total and not success and not error" class="o_account_payment_tx_status" t-att-data-invoice-id="invoice.id"> + <t t-call="payment.payment_confirmation_status"> + <t t-set="payment_tx_id" t-value="invoice.get_portal_last_transaction()"/> + <t t-set="reference" t-value="invoice.payment_reference"/> + </t> + </div> + <t t-set="tx_ids" t-value="invoice.transaction_ids.filtered(lambda tx: tx.state in ('authorized', 'done'))"/> + <div t-if="(invoice.amount_residual or not tx_ids) and invoice.state == 'posted' and invoice.payment_state in ('not_paid', 'partial') and invoice.amount_total" id="portal_pay"> + <div t-if="pms or acquirers" id="payment_method"> + <t t-call="account_payment.portal_invoice_payment"/> + </div> + </div> + <div class="panel-body" t-if="existing_token"> + <div class="offset-lg-3 col-lg-6"> + <i class="fa fa-info"></i> You have credits card registered, you can log-in to be able to use them. + </div> + </div> + </xpath> + </template> + + <template id="portal_invoice_error" name="Invoice error display: payment errors" + inherit_id="account.portal_invoice_error"> + <xpath expr="//t[@name='generic']" position="after"> + <t t-if="error == 'pay_invoice_invalid_doc'"> + There was an error processing your payment: invalid invoice. + </t> + <t t-if="error == 'pay_invoice_invalid_token'"> + There was en error processing your payment: invalid credit card ID. + </t> + <t t-if="error == 'pay_invoice_tx_fail'"> + There was an error processing your payment: transaction failed.<br /> + <t t-set="tx_id" t-value="invoice.get_portal_last_transaction()"/> + <t t-if="tx_id and tx_id.state_message"> + <t t-esc="tx_id.state_message"/> + </t> + </t> + <t t-if="error == 'pay_invoice_tx_token'"> + There was an error processing your payment: issue with credit card ID validation. + </t> + </xpath> + </template> + + <template id="portal_invoice_success" name="Invoice success display: payment success" + inherit_id="account.portal_invoice_success"> + <xpath expr="//a[hasclass('close')]" position="after"> + <t t-if="success == 'pay_invoice'"> + <t t-set="payment_tx_id" t-value="invoice.get_portal_last_transaction()"/> + <span t-if='payment_tx_id.acquirer_id.done_msg' t-raw="payment_tx_id.acquirer_id.done_msg"/> + <div t-if="payment_tx_id.acquirer_id.pending_msg and payment_tx_id.acquirer_id.provider == 'transfer' and invoice.ref"> + <b>Communication: </b><span t-esc='invoice.ref'/> + </div> + </t> + <t t-if="success == 'pay_invoice' and invoice.payment_state in ('paid', 'in_payment')"> + Done, your online payment has been successfully processed. Thank you for your order. + </t> + </xpath> + </template> +</odoo> |
