diff --git a/account_payment_order/README.rst b/account_payment_order/README.rst new file mode 100644 index 000000000..29755b0ef --- /dev/null +++ b/account_payment_order/README.rst @@ -0,0 +1,132 @@ +===================== +Account Payment Order +===================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--payment-lightgray.png?logo=github + :target: https://github.com/OCA/bank-payment/tree/14.0/account_payment_order + :alt: OCA/bank-payment +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/bank-payment-14-0/bank-payment-14-0-account_payment_order + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/173/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds support for payment orders and debit orders. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +This module depends on: + +* account_payment_partner +* base_iban +* document + +This modules is part of the OCA/bank-payment suite. + +Configuration +============= + +This module adds several options on Payment Modes, cf Invoicing/Accounting > +Configuration > Management > Payment Modes. + +Usage +===== + +You can create a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the move lines to pay. + +You can create a Debit order via the menu Invoicing/Accounting > Customers > Debit Orders and then select the move lines to debit. + +This module also adds an action *Add to Payment Order* on supplier invoices and *Add to Debit Order* on customer invoices. + +You can print a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the payment oder to print. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* ACSONE SA/NV +* Therp BV +* Tecnativa +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Stéphane Bidoul +* Alexis de Lattre +* Adrien Peiffer +* Stefan Rijnhart +* Laurent Mignon +* Alexandre Fayolle +* Danimar Ribeiro +* Erwin van der Ploeg +* Raphaël Valyi +* Sandy Carter +* Angel Moya +* Jose María Alzaga +* Meyomesse Gilles +* `DynApps `_: + + * Raf Ven +* Andrea Stirpe +* `Jarsa `_: + + * Alan Ramos +* `Tecnativa `_: + + * Pedro M. Baeza + * Carlos Dauden + * Carlos Roca + +* `Open Source Integrators `_: + + * Ammar Officewala + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/bank-payment `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_payment_order/__init__.py b/account_payment_order/__init__.py new file mode 100644 index 000000000..7660e7bf6 --- /dev/null +++ b/account_payment_order/__init__.py @@ -0,0 +1,3 @@ +from . import models +from . import report +from . import wizard diff --git a/account_payment_order/__manifest__.py b/account_payment_order/__manifest__.py new file mode 100644 index 000000000..c84b84c85 --- /dev/null +++ b/account_payment_order/__manifest__.py @@ -0,0 +1,42 @@ +# © 2009 EduSense BV () +# © 2011-2013 Therp BV () +# © 2013-2014 ACSONE SA (). +# © 2014-2016 Tecnativa - Pedro M. Baeza +# © 2016 Akretion (). +# © 2016 Aselcis (). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + + +{ + "name": "Account Payment Order", + "version": "15.0.1.0.0", + "license": "AGPL-3", + "author": "ACSONE SA/NV, " + "Therp BV, " + "Tecnativa, " + "Akretion, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/bank-payment", + "category": "Banking addons", + "external_dependencies": {"python": ["lxml"]}, + "depends": ["account_payment_partner", "base_iban"], # for manual_bank_tranfer + "data": [ + "views/account_payment_method.xml", + "security/payment_security.xml", + "security/ir.model.access.csv", + "wizard/account_payment_line_create_view.xml", + "wizard/account_invoice_payment_line_multi_view.xml", + "views/account_payment_mode.xml", + "views/account_payment_order.xml", + "views/account_payment_line.xml", + "views/bank_payment_line.xml", + "views/account_move_line.xml", + "views/ir_attachment.xml", + "views/account_invoice_view.xml", + "data/payment_seq.xml", + "report/print_account_payment_order.xml", + "report/account_payment_order.xml", + ], + "demo": ["demo/payment_demo.xml"], + "installable": True, +} diff --git a/account_payment_order/data/payment_seq.xml b/account_payment_order/data/payment_seq.xml new file mode 100644 index 000000000..0d80d10ff --- /dev/null +++ b/account_payment_order/data/payment_seq.xml @@ -0,0 +1,30 @@ + + + + + Bank Payment Line + bank.payment.line + L + 5 + + + + Payment Line + account.payment.line + P + 5 + + + + Payment Order + account.payment.order + PAY + 4 + + + diff --git a/account_payment_order/demo/payment_demo.xml b/account_payment_order/demo/payment_demo.xml new file mode 100644 index 000000000..95b42c3a4 --- /dev/null +++ b/account_payment_order/demo/payment_demo.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/account_payment_order/i18n/account_payment_order.pot b/account_payment_order/i18n/account_payment_order.pot new file mode 100644 index 000000000..8645eabfa --- /dev/null +++ b/account_payment_order/i18n/account_payment_order.pot @@ -0,0 +1,1299 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \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_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You" +" need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above" +" criteria or click on Add an item to manually select the move lines filtered" +" by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be grouped upon confirmation of the payment order.The grouping will be done only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/am.po b/account_payment_order/i18n/am.po new file mode 100644 index 000000000..abed94fd8 --- /dev/null +++ b/account_payment_order/i18n/am.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/ar.po b/account_payment_order/i18n/ar.po new file mode 100644 index 000000000..bcdbdce20 --- /dev/null +++ b/account_payment_order/i18n/ar.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/ca.po b/account_payment_order/i18n/ca.po new file mode 100644 index 000000000..db79d570a --- /dev/null +++ b/account_payment_order/i18n/ca.po @@ -0,0 +1,1456 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-02 03:43+0000\n" +"PO-Revision-Date: 2019-10-04 15:48+0000\n" +"Last-Translator: Jaume Planas \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.8\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"S'han afegit %d línies de pagament a l'ordre de pagament en esborrany " +"existent %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"S'han afegit %d línies de pagament a la nova ordre de pagament %s en " +"esborrany que s'ha creat automàticament." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Moneda de la companyia:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Execució:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Tipus de pagament:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referència" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Total" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Compte usat:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"Ja existeix una línia de pagament amb aquesta referència a la mateixa " +"companyia!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un BIC vàlid conté 8 o 11 caràcters. El BIC '%s' conté %d caràcters, per " +"tant no és vàlid." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Facturació / Pagaments" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Opcions d'assentaments comptables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Es necessita una acció" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activeu aquesta opció si aquest mètode de pagament requereix saber el número " +"de compte bancari del client o proveïdor." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Afegeix tots els apunts comptables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Afegiu a ordre de cobrament" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Afegiu a ordre de pagament" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Afegiu a ordre de pagament/cobrament" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Tots els assentaments" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Tots els assentaments assentats" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Permet apunts en litigi" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Diaris permesos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Import" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Import moneda companyia" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Qualsevol" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Número d'adjunts" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Adjunts" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Torna a Esborrany" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banc" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Compte bancari" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Compte bancari obligatori" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Diari del banc" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Línia de pagament del banc" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Ref. línia de pagament del banc" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Línies de pagament del banc" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Compte bancari amb el qual es pagarà al proveïdor" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"No es pot reconciliar: no hi ha cap apunt per a la línia de pagament %s de " +"l'empresa '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Cancel·la pagaments" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"No es pot esborrar una línia d'ordre de pagament l'ordre de pagament de les " +"quals estigui en estat '%s'. Primer heu de cancel·lar-la." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "Escolliu opcions de filtre d'apunts" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Feu clic a Afegeix tots els apunts per a seleccionar automàticament els " +"apunts que coincideixin amb els criteris anteriors o feu clic a Afegeix un " +"apunt per seleccionar manualment els apunts filtrats mitjançant els criteris " +"anteriors." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Comunicació" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Tipus de comunicació" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Companyia" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Compte bancari de la companyia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirma pagaments" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmat" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Crea" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Crea línies de pagament" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Crea línies de pagament a partir dels assentaments" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Crea transaccions" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Crea transaccions des dels assentaments" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Crea línia de pagament des de la vista de llista de les factures" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creat per" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Moneda" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Moneda transacció pagament" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Ordre de cobrament" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Ordres cobrament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Línia %s de banc de cobrament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Ordres de cobrament %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Data d'execució de pagament per defecte" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Descripció" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "No permetis el dèbit abans de la data de venciment" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nom de visualització" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Esborrany" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Venciment" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Data venciment" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fitxer generat" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Data generació fitxer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "El fitxer s'ha pujat correctament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Data de pujada del fitxer" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fitxer pujat" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Data fixa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Seguidors" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidors (canals)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidors (empreses)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Per a l'empresa '%s, el compte de l'apunt a pagar (%s) és diferent del " +"compte del apunt de trànsit (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Per als modes de pagament que sempre tinguin el mateix compte bancari de la " +"companyia (com les transferències de clients o dèbits directes SEPA de " +"proveïdors), seleccioneu 'Fix'. Per als modes de pagament que no tenen " +"sempre el mateix compte bancari (com el dèbit directe SEPA de clients o " +"transferències a proveïdors), heu de seleccionar 'Variable', que vol dir que " +"seleccionareu el compte bancari a l'ordre de pagament. Si la companyia només " +"té un compte bancari, heu de seleccionar sempre 'Fix'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Lliure" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Referència lliure" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Genera apunts al pujar el fitxer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Genera fitxer de pagaments" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Fitxer generat" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Generar per" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Agrupa per" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Agrupa les transaccions de les ordres de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Si està marca, els missatges nous requereixen la vostra atenció." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si està marcat, alguns missatges tenen un error de lliurament." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si es marca aquesta casella, les línies de transaccions de l'ordre de " +"pagament s'agruparan quan es confirmi l'ordre de pagament. L'agrupació només " +"es farà si coincideixen els següents camps:\n" +"* Empresa\n" +"* Moneda\n" +"* Compte bancari destí\n" +"* Data de pagament\n" +"i el si el 'Tipus de comunicació' es 'Lliure'\n" +"(altres mòduls poden definir camps addicionals per restringir l'agrupació.)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si activeu aquesta opció en un mode de pagament d'entrada, rebreu un " +"missatge d'error quan confirmeu una ordre de dèbit que tingui una línia de " +"pagament amb una data de pagament anterior a la data de venciment." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Immediatament" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Només ordre de pagament entrant" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Ref. factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "És seguidor" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "Diari" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Apunts" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Apunt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtre de diaris" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Deixeu-ho buit si voleu utilitzar tots els diaris" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Deixeu-ho buit si voleu utilitzar totes les empreses" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Etiqueta del pagament que veurà el destinatari" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Enllaç amb compte bancari" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Enllaç amb una factura o abonament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunt principal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "Error de lliurament de missatge" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Missatges" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Falta el diari del banc a l'ordre de pagament %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "Falta el compte bancari de l'empresa a la línia de pagament %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Falta el compte bancari al diari de banc '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Apunt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Data de l'apunt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Apunts" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Opció d'apunt" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "L'apunt '%s' de l'empresa '%s' ja s'ha reconciliat" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Nom o Descripció" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"No s'ha creat cap línia de pagament per a la factura %s perquè ja existeix o " +"perquè aquesta factura ja està pagada." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "No hi ha cap mode de pagament a la factura %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"No s'ha trobat cap gestor per a aquest mètode de pagament. Potser no heu " +"instal·lat el mòdul Odoo relacionat." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Nombre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Nombre d'accions" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +#, fuzzy +msgid "Number of errors" +msgstr "Número d'error" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Nombre de missatges que requereixen una acció" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Nombre de missatges amb error de lliurament" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Nombre de missatges no llegits" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" +"A l'ordre de pagament %s, la Data d'execució del pagament és en el passat " +"(%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"Al mode de pagament '%s' heu d'escollir una opció per al paràmetre 'Opció " +"d'apunt'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un assentament per data de pagament" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un assentament per línia de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Només per a ordres de pagament" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Opcions de les ordres de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Sortint" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Només ordre de pagament sortint" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Compte bancari empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Empreses" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Data de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Data d'execució del pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Tipus de data d'execució del pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Fitxer de pagament" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Línies de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Mètode de pagament" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Mètodes de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Mode de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Mode de pagament de la factura" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modes de pagament" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Ordre de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Ordre de pagament correcte" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Ordres de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Referència de pagament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tipus de pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Línia de banc de pagament %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "Línies de pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Ordre de pagament %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Pagaments" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Publica assentament" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Referència lliure" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Línies de pagament relacionades" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +#, fuzzy +msgid "SMS Delivery error" +msgstr "Error de lliurament de missatge" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Igual" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Igual o buit" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Igual o buit" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Cerca línies de pagament de banc" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Cerca ordres de pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Seleccioneu apunts per crear transaccions" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Seleccioneu apunts per pagar - Valors per defecte" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Seleccioneu una data d'execució sol·licitada si seleccioneu 'Data de " +"venciment' com a Tipus de data d'execució del pagament." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Es pot seleccionar a les ordres de pagament" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Apunts seleccionats per crear transaccions" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Estat" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Estat" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Referència estructurada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Assentaments de destí" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "Model tècnic per a imprimir ordre de pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "L'import per a l'Empresa '%s' és negatiu o nul (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Les línies de pagament de banc serveixen per generar el fitxer de pagament. " +"Es creen automàticament a partir de les línies de transacció quan es " +"confirma l'ordre de pagament: una línia de pagament de banc pot agrupar " +"diverses línies de transacció si s'activa l'opció 'Agrupa transaccions a les " +"ordres de pagament' en el mode de pagament." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, fuzzy, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La factura %s no està en estat Obert" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"El mode de pagament '%s' té l'opció 'No permetis el dèbit abans de la data " +"de venciment'. La línia de pagament %s té una data de venciment del %s, que " +"és posterior a la data de pagament calculada %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"El tipus de pagament (%s) no és el mateix que el tipus de pagament del mode " +"de pagament (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "No hi han transaccions a l'ordre de pagament %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Aquest camp s'utilitza per a assentaments de diaris a pagar i a cobrar. " +"Podeu definir una data límit per al pagament d'aquesta línia." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" +"Aquesta opció ajuda a imposar l'ús d'ordres de pagament per a alguns mètodes " +"de pagament." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" +"Aquest assistent crearà línies de pagament per a les factures seleccionades:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Total (Moneda)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Import total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Total moneda de la companyia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Total residual" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total en la moneda de la companyia" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transaccions" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Filtre de tipus de data" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Missatges no llegits" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Comptador de missatges no llegits" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "Data de valor" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "Missatges del lloc web" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicacions del lloc web" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Assistent per crear línies de pagament" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"No podeu suprimir una ordre de pagament pujada. Podeu cancel·lar-la si voleu " +"fer-ho." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"Si hi han ordres de pagament en esborrany corresponents als modes de " +"pagament de les factures, les línies de pagament s'afegiran a les ordres de " +"pagament esmentades" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "el" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"altrament, es crearan ordres de pagament noves (una per cada mode de " +"pagament)." + +#~ msgid "Done" +#~ msgstr "Realitzat" + +#~ msgid "Done Date" +#~ msgstr "Data de realització" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Diari on es registraran les entrades de pagament quan es confirmin les " +#~ "ordres de pagament/cobrament d'aquest mode" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Nombre de línies de banc" + +#~ msgid "Offsetting Account" +#~ msgstr "Import de compensació" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "En el mode de pagament '%s' heu de seleccionar un valor per al 'Compte de " +#~ "transferència'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "En el mode de pagament '%s' heu de seleccionar un valor per al 'Diari de " +#~ "transferència'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "En el mode de pagament '%s' heu de seleccionar una opció per al paràmetre " +#~ "'Compte de compensació'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Paga línies de les ordres de pagament del 'fitxer pujat' amb un " +#~ "assentament en aquest compte. Només es poden seleccionar comptes marcades " +#~ "per a reconciliació" + +#~ msgid "Transaction Lines" +#~ msgstr "Línies de transacció" + +#~ msgid "Transfer Account" +#~ msgstr "Compte de transferència" + +#~ msgid "Transfer Journal" +#~ msgstr "Diari de transferència" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Assentaments de transferència" + +#~ msgid "Due date" +#~ msgstr "Data de venciment" + +#~ msgid "ISO" +#~ msgstr "ISO" + +#~ msgid "If checked new messages require your attention." +#~ msgstr "Si està marcat, el nous missatges requeriran la vostre atenció." + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "No Journal Entry on invoice %s" +#~ msgstr "No hi han assentaments a la factura %s" diff --git a/account_payment_order/i18n/ca_ES.po b/account_payment_order/i18n/ca_ES.po new file mode 100644 index 000000000..f3edbdf8c --- /dev/null +++ b/account_payment_order/i18n/ca_ES.po @@ -0,0 +1,1302 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/cs.po b/account_payment_order/i18n/cs.po new file mode 100644 index 000000000..273839d01 --- /dev/null +++ b/account_payment_order/i18n/cs.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/da_DK.po b/account_payment_order/i18n/da_DK.po new file mode 100644 index 000000000..959108c1e --- /dev/null +++ b/account_payment_order/i18n/da_DK.po @@ -0,0 +1,1312 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-01 15:18+0000\n" +"PO-Revision-Date: 2018-05-01 15:18+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/oca/teams/23907/" +"da_DK/)\n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "%d betalingslinier tilføjet eksiterende kladde betaling %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "%d betalingslinier tilføjet ny automatisk oprettet kladde betaling %s." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Tilføj alle posteringslinier" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Tilføj til betalingsopkrævning" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Tilføj til betalingsorder" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Tilføj til betalingsopkrævning" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Tilføj til betalingsorder" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Tilføj til betalingsorder" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Tilføj til betalingsorder" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Betalingsform" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Betalingsform" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/de.po b/account_payment_order/i18n/de.po new file mode 100644 index 000000000..bc92104d1 --- /dev/null +++ b/account_payment_order/i18n/de.po @@ -0,0 +1,1349 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-01 15:18+0000\n" +"PO-Revision-Date: 2019-01-18 11:41+0000\n" +"Last-Translator: Joel Michaud \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.3\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"%d Zahlungszeilen, die dem bestehenden Entwurf des Zahlungsauftrags %s " +"hinzugefügt wurden." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"%d Zahlungszeilen, wurden dem bestehenden Zahlungsauftrag %s hinzugefügt." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Unternehmenswährung:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Ausführung:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Zahlungsart:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referenz" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Gesamtsumme" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Verwendetes Konto:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"Eine Zahlungszeile mit dieser Referenz existiert bereits im gleichen " +"Unternehmen!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Ein gültiger BIC besteht aus 8 oder 11 Zeichen. Der BIC '%s' enthält %d " +"Zeichen, so dass er nicht gültig ist." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Buchhaltung / Zahlungen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Optionen für Buchungseinträge" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Aktiviere diese Option, wenn mit dieser Zahlungsmethode die Bankkontonummer " +"des Kunden oder Lieferanten bekannt sein muss." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Alle Buchungszeilen hinzufügen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Zum Lastschriftauftrag hinzufügen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Zum Zahlungsauftrag hinzufügen" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Zum Zahlungs-/Lastschriftauftrag hinzufügen" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Alle Einträge" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Alle gebuchten Einträge" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Erlaube Buchungszeilen zu verarbeiten" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Betrag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Betrag in Unternehmenswährung" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Beliebige" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +#, fuzzy +msgid "Attachment Count" +msgstr "Anhänge" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Anhänge" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Zurück zum Entwurf" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Bank" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Bankkonto erforderlich" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Bank Logbuch" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Bank Zahlungszeile" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Bank Zahlungszeile Ref" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Bankzahlungszeilen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Abbruch" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Zahlungen abbrechen" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Kommunikation" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Kommunikationsart" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Unternehmens Bankkonto" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Zahlungen bestätigen" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Bestätigt" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Erstellen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Währung" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Zum Lastschriftauftrag hinzufügen" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Entwurf" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Fällig" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Fälligkeitsdatum" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Datei erstellt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Erstellungsdatum der Datei" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Datei erfolgreich hochgeladen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Hochladungsdatum der Datei" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Datei hochgeladen" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Zahlungsreferenz" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Erzeuge Zahlungsdatei" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Erzeugte Datei" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Erzeugt von" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Gruppiere nach" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Sofort" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Eingehend" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Zahlungsauftrag" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Bank Logbuch" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Logfile Einträge" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Logbuch Eintrag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Logfile Filter" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Verbindung zum Bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +#, fuzzy +msgid "Main Attachment" +msgstr "Anhänge" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#, fuzzy +msgid "Name or Description" +msgstr "Gleich oder leer" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +#, fuzzy +msgid "Number of Actions" +msgstr "Anzahl der Bankzeilen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +#, fuzzy +msgid "Number of errors" +msgstr "Anzahl der Bankzeilen" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +#, fuzzy +msgid "Number of unread messages" +msgstr "Anzahl der Bankzeilen" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Zum Zahlungsauftrag hinzufügen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Auftrag" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Ausgehend" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Zum Zahlungsauftrag hinzufügen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Partner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Partner Bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +#, fuzzy +msgid "Partners" +msgstr "Partner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Zahlungsdatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Zahlungsdatei" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Zahlungszeilen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Zahlungsmethode" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Zahlungsmethode" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Zahlungsmodus" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Zahlungsmodi" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Zahlungsauftrag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Zahlungsaufträge" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Zahlungsreferenz" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Zahlungsart" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Zahlungen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Zahlungsreferenz" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Zugehörige Zahlungszeilen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Gleich" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Gleich oder Leer" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Gleich oder leer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Durchsuche Bankzahlungszeilen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Durchsuche Zahlungsaufträge" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Bundesland" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transaktionen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "ein" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Anzahl der Bankzeilen" + +#~ msgid "Transaction Lines" +#~ msgstr "Transaktionszeilen" + +#~ msgid "Due date" +#~ msgstr "Fälligkeitsdatum" + +#~ msgid "ISO" +#~ msgstr "ISO" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" + +#~ msgid "Account Entry" +#~ msgstr "Kontoeintrag" diff --git a/account_payment_order/i18n/el_GR.po b/account_payment_order/i18n/el_GR.po new file mode 100644 index 000000000..9f4e0ca2c --- /dev/null +++ b/account_payment_order/i18n/el_GR.po @@ -0,0 +1,1308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Παραγγελία" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Παραγγελία" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/es.po b/account_payment_order/i18n/es.po new file mode 100644 index 000000000..fa35abb2b --- /dev/null +++ b/account_payment_order/i18n/es.po @@ -0,0 +1,1451 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-01-05 10:20+0000\n" +"PO-Revision-Date: 2021-04-18 16:46+0000\n" +"Last-Translator: Nelson Ramírez Sánchez \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "%d líneas de pago añadidas a la orden de pago en borrador %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"%d líneas de pago añadidas a una nueva orden de pago en borrador %s que ha " +"sido creada automáticamente." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Moneda de la Compañía:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Ejecución:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Tipo de pago:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Total" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Cuenta usada:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "Una línea de pago ya existe con esta referencia en la misma compañía!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un BIC válido contiene 8 u 11 caracteres. El BIC '%s' contiene %d " +"caracteres, por lo que no es válido." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Contabilidad / Pagos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Opciones de asientos contables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Acción requerida" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activa esta opción si este método de pago debe requerirte informar el número " +"de cuenta bancaria de tu cliente o proveedor" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Añadir todos los apuntes contables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Añadir a orden de cobro" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Añadir a orden de pago" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Añadir a orden de pago/cobro" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Todos los asientos" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Todos los asientos asentados" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Permitir apuntes en litigio" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Diarios permitidos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Importe" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Importes moneda compañía" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Cualquiera" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Recuento Adjuntos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Adjuntos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Devolver a borrador" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Cuenta bancaria requerida" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Diario de banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Línea de pago bancario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Ref. de la línea de pago bancario" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Líneas de pago bancario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Cuenta bancaria en la que debemos pagar al proveedor" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"No se puede conciliar: no hay apunte para la línea de pago %s de la empresa " +"'%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Cancelar pagos" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"No se puede eliminar una línea de una orden de pago cuyo estado es '%s'. " +"Primero debes cancelarla." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "Escoja las opciones de filtro de apuntes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Pulse en \"Añadir todos los apuntes\" para auto-seleccionar los apuntes que " +"casen con los criterios de arriba o pulse en \"Añadir un elemento\" para " +"seleccionar manualmente las líneas filtradas por los criterios de arriba." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Comunicación" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Tipo de comunicación" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Cuenta bancaria de la compañía" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirmar pagos" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Crear" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Crear líneas de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Importar apuntes contables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Crear transacciones" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Crear transacciones de los apuntes" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Crear líneas de pago desde la factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Moneda" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Moneda de la transacción de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Órdenes de cobro" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Órdenes de cobro" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Línea de adeudo de banco %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Orden de cobro %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Fecha de Ejecución del Pago por defecto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Descripción" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "No permitir el adeudo antes de la fecha de vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Borrador" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Fecha de vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fichero generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Fecha del fichero generado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Fichero subido satisfactoriamente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Fecha de subida del fichero" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fichero subido" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Fecha fija" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidores (Canales)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Empresas)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Para la empresa '%s', la cuenta del apunte a pagar (%s) es diferente de la " +"cuenta del apunte de tránsito (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Para modos de pago que siempre estarán asociados a la misma cuenta bancaria " +"de la compañía (como las transferencias bancarias de clientes o los débitos " +"directos SEPA de proveedores), selecciona 'Fijado\". Para modos de pagos en " +"los que puede cambiar la cuenta bancaria (como el débito directo de clientes " +"o las transferencias de proveedores), seleccione 'Variable', lo que " +"significa que podrá seleccionar la cuenta bancaria en la orden de pago. Si " +"su compañía tiene una única cuenta bancaria, debería seleccionar siempre " +"'Fijo'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Libre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Referencia Libre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Generar asientos contables al subir el archivo" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Generar archivo de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Archivo generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Generado por" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Agrupar transacciones en las órdenes de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Si está marcado hay nuevos mensajes que requieren su atención." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si se encuentra marcado, algunos mensajes tienen error de envío." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si esta casilla está marcada, las líneas de transacciones de la orden de " +"pago serán agrupadas en la confirmación de la misma. La agrupación se " +"realizará sólo si los siguientes campos coinciden:\n" +"* Empresa\n" +"* Moneda\n" +"* Cuenta bancaria destino\n" +"* Fecha de pago\n" +"y si el 'Tipo de comunicación' es 'Libre'\n" +"(otros módulos pueden establecer campos adicionales para restringir la " +"agrupación)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si activa esta opción en un modo de pago entrante, obtendrá un mensaje de " +"error cuando confirme una orden de adeudo que tiene una línea de pago con " +"una fecha de pago anterior a la fecha de vencimiento." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Inmediatamente" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrante" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Solo Orden de Pago Entrante" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Referencia de factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "Es un seguidor" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "Diario de Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Asientos contables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "Asiento Contable" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Apunte contable" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtro de diarios" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Dejar vacío para usar todos los diarios" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Mantener vacío para usar todos los contactos" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Etiqueta del pago que será vista por el beneficiario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Enlazado a la cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Vinculado a una factura o factura rectificativa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunto Principal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "Error de Envío de Mensaje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "No se ha establecido el diario de banco en la orden %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "No se ha establecido la cuenta bancaria en la línea de pago %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Falta la cuenta bancaria para el diario de banco '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Asiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Fecha del asiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Apuntes" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Opciones de asiento" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "El apunte '%s' de la empresa '%s' ya ha sido conciliado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Nombre o descripción" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"No se ha creado línea de pago para la factura %s porque ya existe o porque " +"la factura ya está pagada." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "No hay modo de pago en la factura %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"Sin manejador para este método de pago. Tal vez no ha instalado el módulo de " +"Odoo relacionado." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Número" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de Acciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Número de mensajes que requieren una acción" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con error de envío" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Número de mensajes sin leer" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "En la orden %s, la fecha de ejecución es anterior a la actual (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"En el modo de pago '%s', debe escoger una opción para las 'Opciones de " +"asiento'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un asiento por fecha de pago" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un asiento por línea de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Solo para órdenes de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Opciones para las órdenes" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Orden" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Solo Orden de Pago saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Contactos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Fecha de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Fecha de ejecución del pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Tipo de fecha de ejecución del pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Archivo de remesa" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Líneas de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Métodos de Pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Modo de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Modo de pago en la factura" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modos de pago" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Orden de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Orden de Pago correcta" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Órdenes de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Referencia de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tipo de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Línea de pago bancario %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "Líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Orden %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Pagos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Publicar movimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "Tipo de Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Líneas de pago relacionadas" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de entrega del SMS" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Igual" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Igual o vacío" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Igual o vacío" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Buscar líneas de pago bancario" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Buscar órdees" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Seleccione apuntes para crear transacciones" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Selección de los apuntes - Valores por defecto" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Seleccione una fecha solicitada de ejecución si ha seleccionado 'Fecha de " +"vencimiento' como el tipo de fecha de ejecución del pago." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Seleccionable en las órdenes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Apuntes seleccionados para crear transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Referencia esctructurada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Asientos destino" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "Modelo técnico para imprimir orden de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "El importe para el empresa '%s' es negativo o nulo (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Las líneas de pago bancarias se usan para generar el archivo de pago. Se " +"crean automáticamente de las líneas de transacciones en la confirmación de " +"la orden: una línea de pago bancario puede agrupar varias líneas de " +"transacción si la opción 'Agrupar transacciones en las órdenes' está " +"activada en el modo de pago." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La factura %s no está en estado registrado" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"El modo de pago '%s' tiene la opción 'No permitir adeudo antes de la fecha " +"de vencimiento'. La línea de pago %s tiene una fecha de vencimiento %s que " +"es después de la fecha de pago calculada %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"El tipo de pago (%s) no es el mismo que el tipo de pago del modo de pago (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "No hay transacciones en la orden %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Este campo se usa para asientos a pagar y a cobrar. Puede poner la fecha " +"límite para el pago de esta línea." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" +"Esta opción ayuda a hacer cumplir el uso de órdenes de pago para algunos " +"métodos de pago." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" +"Este asistente creará las líneas de pago para las facturas seleccionadas:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Total (Moneda)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Importe total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Total en la moneda de la compañía" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Total pendiente" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total en moneda de la compañía" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Filtro de tipo de fecha" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Mensajes sin leer" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contador de mensajes sin leer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "Fecha de Valor" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicaciones del sitio web" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Asistente para crear líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"No puedes eliminar una orden de pago subida. Puedes cancelar la orden para " +"hacerlo." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"Si hay órdenes borrador existentes para los modos de pago de las facturas, " +"las líneas de pago se añadirán a ellas" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "el" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"En caso contrario, se crearán nuevas órdenes (una por cada modo de pago)." + +#~ msgid "Done" +#~ msgstr "Realizado" + +#~ msgid "Done Date" +#~ msgstr "Fecha de realización" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Diario al que escribir los asientos contables cuando se confirme la orden " +#~ "de cobro/pago de este modo" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Número de líneas bancarias" + +#~ msgid "Offsetting Account" +#~ msgstr "Cuenta de compensación" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para la 'Cuenta de " +#~ "transferencia'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para el 'Diario de " +#~ "transferencia'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar una opción para el parámetro " +#~ "'Cuenta de compensación'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Las líneas de pago de la orden se conciliarán en la 'subida de archivo' " +#~ "con un apunte a esta cuenta. Sólo puede seleccionar las cuentas que están " +#~ "marcadas para conciliación" + +#~ msgid "Transaction Lines" +#~ msgstr "Líneas de transacción" + +#~ msgid "Transfer Account" +#~ msgstr "Cuenta de transferencia" + +#~ msgid "Transfer Journal" +#~ msgstr "Diario de transferencia" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Asientos de transferencia" + +#~ msgid "Due date" +#~ msgstr "Fecha de vencimiento" + +#~ msgid "ISO" +#~ msgstr "ISO" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "No Journal Entry on invoice %s" +#~ msgstr "No se ha encontrado asiento en la factura %s" + +#~ msgid "Payment Order / Payment" +#~ msgstr "Orden de Pago / Pago" + +#~ msgid "Account Entry" +#~ msgstr "Asiento contable" + +#~ msgid "report.account_payment_order.print_account_payment_order_main" +#~ msgstr "report.account_payment_order.print_account_payment_order_main" diff --git a/account_payment_order/i18n/es_AR.po b/account_payment_order/i18n/es_AR.po new file mode 100644 index 000000000..787d17cf6 --- /dev/null +++ b/account_payment_order/i18n/es_AR.po @@ -0,0 +1,1427 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-11-08 06:35+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: none\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "%d líneas de pago añadidas a la existente orden de pago borrador %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"%d líneas de pago añadidas a la nueva orden de pago borrador %s la cual fue " +"creada automáticamente." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Moneda de la Compañía:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Ejecución:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Tipo de Pago:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Total" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Cuenta Usada:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "Una línea de pago ya existe con esta referencia en la misma compañía!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un BIC válido contiene 8 u 11 caracteres. El BIC '%s' contiene %d " +"caracteres, por lo que no es válido." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Contabilidad / Pagos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Opciones de asientos contables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Acción Requerida" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Active esta opción si este método de pago requiere que conozca el número de " +"cuenta bancaria de su cliente o proveedor." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Añadir todos los apuntes contables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Añadir a Orden de Débito" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Añadir a Orden de Pago" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Añadir a la Orden de Pago/Débito" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Todos los Asientos" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Todos los Asientos Asentados" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Permitir Apuntes en Litigio" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Permitir diarios" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Importe" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Importes en Moneda de Compañía" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Cualquiera" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Cuenta de Adjunto" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Adjuntos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Volver a Borrador" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Cuenta Bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Cuenta Bancaria Requerida" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Diario de banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Línea de pago bancario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Ref. de la línea de pago bancario" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Líneas de pago bancario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "Transacciones Bancarias" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Cuenta bancaria en la que debemos pagar al proveedor" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"No se puede conciliar: no hay apunte para la línea de pago %s de la empresa " +"'%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Cancelar pagos" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"No se puede eliminar una línea de una orden de pago cuyo estado es '%s'. " +"Primero debes cancelarla." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "Escoja las opciones de filtro de apuntes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Pulse en \"Añadir todos los apuntes\" para auto-seleccionar los apuntes que " +"casen con los criterios de arriba o pulse en \"Añadir un elemento\" para " +"seleccionar manualmente las líneas filtradas por los criterios de arriba." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Comunicación" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Tipo de Comunicación" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "La comunicación está vacía en la línea de pago %s." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Cuenta bancaria de la compañía" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirmar pagos" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Crear" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Crear líneas de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Importar apuntes contables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Crear transacciones" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Crear transacciones de los apuntes" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Crear líneas de pago desde la factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Moneda" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Moneda de la transacción de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Orden de Débito" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Órdenes de cobro" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Línea de adeudo de banco %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Orden de cobro %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Fecha de Ejecución del Pago por defecto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Descripción" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "No permitir el adeudo antes de la fecha de vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Borrador" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Fecha de vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fichero generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Fecha del fichero generado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Fichero subido satisfactoriamente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Fecha de subida del fichero" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fichero subido" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Fecha fija" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidores (Canales)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Socios)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Para la empresa '%s', la cuenta del apunte a pagar (%s) es diferente de la " +"cuenta del apunte de tránsito (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Para modos de pago que siempre estarán asociados a la misma cuenta bancaria " +"de la compañía (como las transferencias bancarias de clientes o los débitos " +"directos SEPA de proveedores), selecciona 'Fijado\". Para modos de pagos en " +"los que puede cambiar la cuenta bancaria (como el débito directo de clientes " +"o las transferencias de proveedores), seleccione 'Variable', lo que " +"significa que podrá seleccionar la cuenta bancaria en la orden de pago. Si " +"su compañía tiene una única cuenta bancaria, debería seleccionar siempre " +"'Fijo'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Libre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Referencia Libre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Generar asientos contables al subir el archivo" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Generar archivo de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Archivo generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Generado por" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Agrupar transacciones en las órdenes de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Si está marcado, los mensajes nuevos requieren su atención." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si está marcado, algunos mensajes tienen un error de entrega." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si esta casilla está marcada, las líneas de transacciones de la orden de " +"pago serán agrupadas en la confirmación de la misma. La agrupación se " +"realizará sólo si los siguientes campos coinciden:\n" +"* Empresa\n" +"* Moneda\n" +"* Cuenta bancaria destino\n" +"* Fecha de pago\n" +"y si el 'Tipo de comunicación' es 'Libre'\n" +"(otros módulos pueden establecer campos adicionales para restringir la " +"agrupación)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si activa esta opción en un modo de pago entrante, obtendrá un mensaje de " +"error cuando confirme una orden de adeudo que tiene una línea de pago con " +"una fecha de pago anterior a la fecha de vencimiento." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Inmediatamente" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrante" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Solo Orden de Pago Entrante" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Referencia de factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "Es Seguidor" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Asientos Contables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "Asiento Contable" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Apunte Contable" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtro de Diarios" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Dejar vacío para usar todos los diarios" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Mantener vacío para usar todos los socios" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Etiqueta del pago que verá el destinatario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Vinculado a la Cuenta Bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Vinculado a una factura o factura rectificativa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunto Principal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "Error de Entrega del Mensaje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "No se ha establecido el diario de banco en la orden %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "No se ha establecido la cuenta bancaria en la línea de pago %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Falta la cuenta bancaria para el diario de banco '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Asiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Fecha del asiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Apuntes" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Opciones de asiento" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "El apunte '%s' de la empresa '%s' ya ha sido conciliado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Nombre o descripción" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"No se ha creado línea de pago para la factura %s porque ya existe o porque " +"la factura ya está pagada." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "No hay modo de pago en la factura %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"Sin manejador para este método de pago. Tal vez no ha instalado el módulo de " +"Odoo relacionado." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Número" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de Acciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "Número de Transacciones Bancarias" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "Número de Apuntes Contables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Número de mensajes que requieren una acción" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con error de entrega" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Número de mensajes sin leer" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "En la orden %s, la fecha de ejecución es anterior a la actual (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"En el modo de pago '%s', debe escoger una opción para las 'Opciones de " +"asiento'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un asiento por fecha de pago" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un asiento por línea de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Solo para órdenes de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Opciones para las órdenes" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Orden" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Solo Orden de Pago Saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Socio" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Socios" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Fecha de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Fecha de ejecución del pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Tipo de fecha de ejecución del pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Archivo de remesa" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Líneas de Pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Métodos de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Modo de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Modo de pago en la factura" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modos de pago" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Orden de Pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Orden de Pago correcta" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Órdenes de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Referencia de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tipo de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Línea de pago bancario %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "Líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Orden %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Pagos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Publicar movimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "Tipo de Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Líneas de Pago Relacionadas" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de entrega de SMS" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Igual" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Igual o vacío" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Igual o vacío" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Buscar líneas de pago bancario" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Buscar órdees" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Seleccione apuntes para crear transacciones" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Selección de los apuntes - Valores por defecto" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Seleccione una fecha solicitada de ejecución si ha seleccionado 'Fecha de " +"vencimiento' como el tipo de fecha de ejecución del pago." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Seleccionable en las órdenes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Apuntes seleccionados para crear transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Estatus" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Referencia esctructurada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Asientos destino" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "Modelo técnico para imprimir una orden de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "El importe para el empresa '%s' es negativo o nulo (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Las líneas de pago bancarias se usan para generar el archivo de pago. Se " +"crean automáticamente de las líneas de transacciones en la confirmación de " +"la orden: una línea de pago bancario puede agrupar varias líneas de " +"transacción si la opción 'Agrupar transacciones en las órdenes' está " +"activada en el modo de pago." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La factura %s no está en estado Publicado" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"El modo de pago '%s' tiene la opción 'No permitir adeudo antes de la fecha " +"de vencimiento'. La línea de pago %s tiene una fecha de vencimiento %s que " +"es después de la fecha de pago calculada %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"El tipo de pago (%s) no es el mismo que el tipo de pago del modo de pago (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "No hay transacciones en la orden %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Este campo se usa para asientos a pagar y a cobrar. Puede poner la fecha " +"límite para el pago de esta línea." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" +"Esta opción ayuda a forzar el uso de órdenes de pago para algunos métodos de " +"pago." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" +"Este asistente creará las líneas de pago para las facturas seleccionadas:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Total (Moneda)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Importe total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Total en la moneda de la compañía" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Total pendiente" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total en moneda de la compañía" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Tipo de Filtro de Fecha" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Mensajes sin Leer" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contador de Mensajes sin Leer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "Fecha de Valor" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del Sitio Web" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Asistente para crear líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"No puede eliminar una orden de pago subida. Puede cancelar la orden para " +"hacerlo." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"Si hay órdenes borrador existentes para los modos de pago de las facturas, " +"las líneas de pago se añadirán a ellas" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "el" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"En caso contrario, se crearán nuevas órdenes (una por cada modo de pago)." + +#~ msgid "Done" +#~ msgstr "Realizado" + +#~ msgid "Done Date" +#~ msgstr "Fecha de realización" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Diario al que escribir los asientos contables cuando se confirme la orden " +#~ "de cobro/pago de este modo" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Número de líneas bancarias" + +#~ msgid "Offsetting Account" +#~ msgstr "Cuenta de compensación" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para la 'Cuenta de " +#~ "transferencia'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para el 'Diario de " +#~ "transferencia'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar una opción para el parámetro " +#~ "'Cuenta de compensación'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Las líneas de pago de la orden se conciliarán en la 'subida de archivo' " +#~ "con un apunte a esta cuenta. Sólo puede seleccionar las cuentas que están " +#~ "marcadas para conciliación" + +#~ msgid "Transaction Lines" +#~ msgstr "Líneas de transacción" + +#~ msgid "Transfer Account" +#~ msgstr "Cuenta de Transferencia" + +#~ msgid "Transfer Journal" +#~ msgstr "Diario de Transferencia" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Asientos de Transferencia" diff --git a/account_payment_order/i18n/es_CL.po b/account_payment_order/i18n/es_CL.po new file mode 100644 index 000000000..500a3ddda --- /dev/null +++ b/account_payment_order/i18n/es_CL.po @@ -0,0 +1,1430 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-04-19 14:46+0000\n" +"Last-Translator: Nelson Ramírez Sánchez \n" +"Language-Team: none\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"%d líneas de pago agregadas al borrador del pago de nómina existente %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"%d líneas de pago agregadas al nuevo borrador del pago de nómina %s que se " +"ha creado automáticamente." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Moneda de la Empresa:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Ejecución:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Tipo de Pago:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Total" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Cuenta Utilizada:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "¡Ya existe una línea de pago con esta referencia en la misma empresa!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un SBIF válido contiene 8 u 11 caracteres. El SBIF '%s' contiene %d " +"caracteres, por lo que no es válido." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Contabilidad / Pagos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Opciones de Asientos Contables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Acción Requerida" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Active esta opción si esta forma de pago requiere que conozca el número de " +"cuenta bancaria de su cliente o proveedor." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Agregar todas las líneas de movimiento" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Agregar a la orden de débito" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Agregar al pago de nómina" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Agregar al pago de nómina / débito" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Todas las entradas" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Todas las entradas publicadas" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Permitir líneas de movimiento de litigio" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Diarios permitidos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Monto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Importe en la moneda de la empresa" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Cualquier" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Recuento de archivos adjuntos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Adjuntos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Volver al borrador" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Cuenta Bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Se requiere una cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Diario de Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Línea de pago bancario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Ref. Línea Pago Bancario" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Líneas de pago bancarias" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Cuenta bancaria en la que debemos pagar al proveedor" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"No se puede conciliar: no hay línea de movimiento para la línea de pago %s " +"de contacto '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Cancelar Pagos" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"No se puede eliminar una línea de orden de pago cuyo pago de nómina está en " +"el estado '%s'. Primero debes cancelarlo." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "Elija Mover opciones de filtro de líneas" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Haga clic en Agregar todas las líneas de movimiento para seleccionar " +"automáticamente las líneas de movimiento que coincidan con los criterios " +"anteriores o haga clic en Agregar un elemento para seleccionar manualmente " +"las líneas de movimiento filtradas por los criterios anteriores." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Glosa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Tipo de Glosa" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Cuenta Bancaria de Empresa" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirmar Pagos" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Crear" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Crear Líneas de Pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Crear líneas de pago a partir de elementos del diario" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Crear transacciones" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Crear transacciones a partir de líneas de movimiento" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Crear líneas de pago desde la vista de árbol de facturas" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Moneda" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Moneda de la transacción de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Orden de débito" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Ordenes de débito" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Línea de débito bancario %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Orden de débito %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Fecha de ejecución de pago predeterminada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Descripción" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "Rechazar débito antes de la fecha de vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nombre Mostrado" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Borrador" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Fecha de Vencimiento" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Archivo Generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Fecha de Generación del Archivo" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Archivo subido correctamente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Fecha de carga del archivo" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Archivo subido" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Fecha fijada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidores (Canales)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Contactos)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Para el contacto '%s', la cuenta de la línea de movimiento de cuenta para " +"pagar (%s) es diferente de la cuenta de la línea de movimiento de tránsito " +"(%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Para los modos de pago que siempre están vinculados a la misma cuenta " +"bancaria de su empresa (como transferencia bancaria de clientes o " +"domiciliación bancaria SEPA de proveedores), seleccione 'Fijo'. Para los " +"modos de pago que no siempre están vinculados a la misma cuenta bancaria " +"(como débito directo SEPA para clientes, transferencia bancaria a " +"proveedores), debe seleccionar 'Variable', lo que significa que seleccionará " +"la cuenta bancaria en el pago de nómina. Si su empresa solo tiene una cuenta " +"bancaria, siempre debe seleccionar 'Fijo'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Libre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Referencia Libre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Generar asientos contables al cargar archivos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Generar archivo de pago" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Archivo generado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Generado por" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Transacciones grupales en Pago de Nómina" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Si está marcado, los mensajes nuevos requieren su atención." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si está marcado, algunos mensajes tienen un error de entrega." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si se marca esta, las líneas de transacción de la orden de pago se agruparán " +"tras la confirmación de la pago de nómina. La agrupación se realizará solo " +"si los siguientes campos coinciden:\n" +"* Pareja\n" +"* Divisa\n" +"* Cuenta bancaria de destino\n" +"* Fecha de pago\n" +"y si el 'Tipo de comunicación' es 'Gratis'\n" +"(otros módulos pueden establecer campos adicionales para restringir la " +"agrupación.)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si activa esta opción en un modo de pago entrante, aparecerá un mensaje de " +"error cuando confirme una orden de débito que tiene una línea de pago con " +"una fecha de pago anterior a la fecha de vencimiento." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Inmediatamente" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrante" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Solo pago de nómina entrante" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Referencia de Factura" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "Es seguidor" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Entradas de Diario" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "Entrada de Diario" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Item de diario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtro de Diario" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Mantener vacío para usar todas los diarios" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Mantener vacío para usar todos los contactos" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Etiqueta del pago que verá el destinatario" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Actualizado por última vez por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Enlace a cuenta bancaria" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Vinculada a una Factura o Devolución" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunto Principal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "Error de entrega de mensaje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Falta el diario de banco el pago de nómina %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "Falta la cuenta bancaria del socio en la línea de pago %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Falta una cuenta bancaria en el diario bancario '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Movimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Fecha de Movimiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Apunte Contable" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Opción de Movimiento" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "Apunte contable '%s' del contacto '%s' ya se ha conciliado" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Nombre o Descripción" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"No se ha creado ninguna línea de pago para la factura %s porque ya existe o " +"porque esta factura ya está pagada." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "Sin modo de pago en la factura %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"No hay administrador para este método de pago. Tal vez no haya instalado el " +"módulo Odoo relacionado." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Número" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de Acciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Número de mensajes que requieren alguna acción" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con errores de entrega" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Número de mensajes no leídos" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" +"En el pago de nómina %s, la Fecha de ejecución del pago es anterior a (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"En el modo de pago '%s', debe elegir una opción para el parámetro 'Opción de " +"movimiento'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un movimiento por fecha de pago" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un movimiento por línea de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Solo para pago de nómina" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Opciones para pagos de nómina" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Orden" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Solo pagos de nómina saliente" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Contacto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Cuenta bancaria de contacto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Contacto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Fecha de Pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Fecha de ejecución del pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Tipo de fecha de ejecución de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Archivo de pago" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Líneas de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Métodos de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Modo de pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Modo de pago en factura" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modos de pago" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Pago de Nómina" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Pago de Nómina Ok" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Pagos de Nómina" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Referencia de Pago" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tipo de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Línea bancaria de pago %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "Líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Pago de Nómina %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Pagos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Publicar Asiento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "Tipo de Referencia" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Líneas de pago relacionadas" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de entrega de SMS" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Igual" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Igual o vacío" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Misma o vacía" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Buscar líneas de pago bancarias" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Buscar Pagos de Nómina" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Seleccione Mover líneas para crear transacciones" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Seleccione Mover líneas para pagar - Valores predeterminados" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Seleccione una fecha de ejecución solicitada si seleccionó 'Fecha de " +"vencimiento' como el Tipo de fecha de ejecución de pago." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Seleccionable en Pagos de Nómina" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Mover líneas seleccionadas para crear transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Referencia estructurada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Movimientos de destino" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "Modelo técnico para imprimir pago de nómina" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "La cantidad para el contacto '%s' es negativa o nula (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Las líneas de pago bancarias se utilizan para generar el archivo de pago. Se " +"crean automáticamente a partir de las líneas de transacción tras la " +"confirmación del pago de nómina: una línea de pago bancaria puede agrupar " +"varias líneas de transacción si la opción 'Transacciones de grupo en Pagos " +"de nómina' está activa en el modo de pago." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La factura %s no está en estado registrado" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"El modo de pago '%s' tiene la opción 'No permitir débito antes de la fecha " +"de vencimiento'. La línea de pago %s tiene una fecha de vencimiento %s que " +"es posterior a la fecha de pago calculada %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"El tipo de pago (%s) no es el mismo que el tipo de pago del modo de pago (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "No hay transacciones en el pago de nómina %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Este campo se utiliza para asientos de diario a pagar y a cobrar. Puede " +"poner la fecha límite para el pago de esta línea." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" +"Esta opción ayuda a hacer cumplir el uso de pagos de nómina para algunos " +"métodos de pago." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "Este asistente creará líneas de pago para las facturas seleccionadas:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Total (Moneda)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Monto Total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Moneda total de la empresa" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Residual total" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total en la moneda de la empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transacciones" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Tipo de filtro de fecha" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contador de mensajes no leídos" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "Fecha valor" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Asistente para crear líneas de pago" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"No puede eliminar un pago de nómina cargada. Puede cancelarlo para poder " +"hacerlo." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"si existen pagos de nómina en borrador existentes para los modos de pago de " +"las facturas, las líneas de pago se agregarán a esos pagos de nómina" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "en" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"de lo contrario, se crearán nuevos pagos de nómina (una por modo de pago)." + +#~ msgid "Done" +#~ msgstr "Hecho" + +#~ msgid "Done Date" +#~ msgstr "Fecha Realizada" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Diario para escribir entradas de pago al confirmar pagos de nómina / " +#~ "débito de este modo" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Número de Líneas de Banco" + +#~ msgid "Offsetting Account" +#~ msgstr "Cuenta de compensación" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para la 'Transferir " +#~ "cuenta'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar un valor para el 'Diario de " +#~ "transferencias'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "En el modo de pago '%s', debe seleccionar una opción para el parámetro " +#~ "'Cuenta de compensación'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Pague las líneas en los pagos de nómina \"cargadas de archivos\" con un " +#~ "movimiento en esta cuenta. Solo puede seleccionar cuentas que están " +#~ "marcadas para conciliación" + +#~ msgid "Transaction Lines" +#~ msgstr "Líneas de transacción" + +#~ msgid "Transfer Account" +#~ msgstr "Cuenta de transferencia" + +#~ msgid "Transfer Journal" +#~ msgstr "Diario de Transferencia" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Transferir asientos de diario" diff --git a/account_payment_order/i18n/es_CR.po b/account_payment_order/i18n/es_CR.po new file mode 100644 index 000000000..312a74f1a --- /dev/null +++ b/account_payment_order/i18n/es_CR.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/es_EC.po b/account_payment_order/i18n/es_EC.po new file mode 100644 index 000000000..1a82e01a9 --- /dev/null +++ b/account_payment_order/i18n/es_EC.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/es_ES.po b/account_payment_order/i18n/es_ES.po new file mode 100644 index 000000000..c0f46715b --- /dev/null +++ b/account_payment_order/i18n/es_ES.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/es_MX.po b/account_payment_order/i18n/es_MX.po new file mode 100644 index 000000000..5a2f3e53f --- /dev/null +++ b/account_payment_order/i18n/es_MX.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/es_VE.po b/account_payment_order/i18n/es_VE.po new file mode 100644 index 000000000..d4fe451ff --- /dev/null +++ b/account_payment_order/i18n/es_VE.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/et.po b/account_payment_order/i18n/et.po new file mode 100644 index 000000000..c14dd0be4 --- /dev/null +++ b/account_payment_order/i18n/et.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/fi.po b/account_payment_order/i18n/fi.po new file mode 100644 index 000000000..501102a6e --- /dev/null +++ b/account_payment_order/i18n/fi.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Hyväksytty" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Luonut" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Tila" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/fr.po b/account_payment_order/i18n/fr.po new file mode 100644 index 000000000..81cd887a6 --- /dev/null +++ b/account_payment_order/i18n/fr.po @@ -0,0 +1,1484 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"Lignes de paiement %d ont été ajouté à l'ordre de paiement %s en brouillon" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"Lignes de paiement %d ont été ajouté au nouveau ordre de paiement %s qui a " +"été automatiquement créé." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Company Currency:" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"Une ligne de paiement existe déjà avec cette référence dans la même société !" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un BIC valide contient 8 ou 11 caractères. Le BIC '%s' contient %d " +"caractères, donc il n'est pas valide." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Comptabilité / Paiements" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Options des pièces comptables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activez cette option si cette méthode de paiement vous demande de connaître " +"le numéro de compte bancaire de votre client ou fournisseur." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Ajouter des écritures comptables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Ajouter à l'ordre de débit" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Ajouter à l'ordre de paiement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Ajouter à l'ordre de paiement/débit" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Toutes les écritures" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Toutes les écritures passées" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Autoriser les lignes d'écriture en litige" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Montant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Montant dans la devise société" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Tout" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +#, fuzzy +msgid "Attachment Count" +msgstr "Pièces jointes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Pièces jointes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Remettre en brouillon" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banque" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Compte bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Compte bancaire requis" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Journal de banque" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Ligne de paiement bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Référence de la ligne de paiement bancaire" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Lignes de paiement bancaires" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Compte bancaire sur lequel nous devrions payer le fournisseur" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"Impossible de rapprocher : aucune ligne d'écriture pour la ligne de paiement " +"%s du partenaire '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Paiements annulés" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"Impossible de supprimer une ligne d'ordre de paiement tant que l'ordre de " +"paiement est dans l'état '%s'. Vous devez tout d'abord l'annuler." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Cliquez sur Ajouter toutes les lignes d'écriture pour sélectionner " +"automatiquement les lignes correspondant aux critères ci-dessus ou cliquez " +"sur Ajouter un élément pour sélectionner manuellement les lignes d'écriture " +"filtrées par les critères ci-dessus." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Communication" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Type de communication" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Société" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Compte bancaire de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirmer le paiement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmé" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Créer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Créer les lignes de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Créer les lignes de paiement à partir de la pièce comptable" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Créer les opérations" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Créer les opérations à partir des écritures comptables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Créer les lignes de paiement à partir de la liste des factures" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Créée par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Créée le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Devise" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Devise de l'opération de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Ordres de prélèvement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Ordres de prélèvement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Prélèvement ligne bancaire %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Ordre de prélèvement %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "Interdire le prélèvement avant la date d'échéance" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Brouillon" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Échéance" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Date d'échéance" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fichier généré" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Date de la génération du fichier" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Fichier téléchargé avec succès" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Date de téléchargement du fichier" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fichier téléchargé" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Date fixe" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Pour le partenaire '%s', le compte de la ligne d'écriture à payer (%s) est " +"différent du compte de la ligne d'écriture du transfert (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +#, fuzzy +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Pour les modes de paiement qui sont toujours rattachés au même compte " +"bancaire de votre société (par exemple, le transfert de clients ou le " +"prélèvement SEPA auprès de fournisseurs), sélectionnez 'Fixe'. Pour les " +"modes de paiement qui ne sont pas toujours rattachés au même compte bancaire " +"(comme le prélèvement SEPA direct pour les clients, le transfert bancaire " +"aux fournisseurs), vous devez choisir 'Variable', ce qui signifie que vous " +"sélectionnez le compte bancaire sur l'ordre de paiement. Si votre entreprise " +"ne dispose que d'un compte bancaire, vous devez toujours sélectionner 'Fixe'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Libre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Référence du paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Générer des écritures comptables lors du téléchargement de fichier" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Générer un fichier de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Fichier généré" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Généré par" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Grouper les opérations des ordres de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +#, fuzzy +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si coché, les lignes de l'opération de l'ordre de paiement seront groupées " +"lors de la confirmation de l'ordre de paiement. Le regroupement ne sera " +"effectué que si les champs suivants correspondent :\n" +"Partenaire\n" +"* Devise\n" +"* Compte bancaire de destination\n" +"* Date de paiement\n" +"Et si le 'Type de communication' est 'Libre'\n" +"(D'autres modules peuvent définir des champs supplémentaires pour " +"restreindre le regroupement.)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si vous activez cette option sur un mode de paiement entrant, un message " +"d'erreur s'affichera lorsque vous confirmez un ordre de prélèvement " +"comportant une ligne de paiement dont la date de paiement est antérieure à " +"la date d'échéance." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Immédiatement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Ordre de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Invoice Ref" +msgstr "Facture" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Journal de banque" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Pièces comptables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Écriture comptable" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtre sur les journaux" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Garder vide pour utiliser tous les journaux" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +#, fuzzy +msgid "Keep empty to use all partners" +msgstr "Garder vide pour utiliser tous les journaux" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Nom du paiement qui sera vu par le destinataire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Dernière modification par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Lien vers le compte bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Lié à une facture ou à un avoir" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +#, fuzzy +msgid "Main Attachment" +msgstr "Pièces jointes" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Journal bancaire manquant sur l'ordre de paiement %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "Compte bancaire du partenaire manquant sur la ligne de paiement %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Journal bancaire manquant sur le journal '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Écriture" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Date du mouvement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Écritures comptables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Option écriture" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "La ligne d'écriture '%s' du partenaire '%s' a déjà été réconciliée" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#, fuzzy +msgid "Name or Description" +msgstr "Identique ou vide" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"Aucune ligne de paiement créée pour la facture %s parce qu'elle existe déjà " +"ou parce que cette facture est déjà payée." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "Pas de mode de paiement sur la facture %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"Aucun gestionnaire pour ce mode de paiement. Vous n'avez peut-être pas " +"installé le module Odoo associé." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Numéro" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +#, fuzzy +msgid "Number of Actions" +msgstr "Nombre de lignes bancaires" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +#, fuzzy +msgid "Number of errors" +msgstr "Nombre de lignes bancaires" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +#, fuzzy +msgid "Number of unread messages" +msgstr "Nombre de lignes bancaires" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" +"Sur l'ordre de paiement %s, la date d'exécution du paiement est passée (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"Sur le mode de paiement '%s', vous devez choisir une option pour le " +"paramètre 'Option d'écriture'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un mouvement par date de paiement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un mouvement par ligne de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Options pour les ordres de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Options pour les ordres de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Sortant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Ordre de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Partenaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Compte bancaire partenaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +#, fuzzy +msgid "Partners" +msgstr "Partenaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Date de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Date d'exécution du paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Type de la date d'exécution du paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Fichier de paiement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Lignes de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Méthode de paiement" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Méthode de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Mode de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Mode de paiement sur la facture" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modes de paiement" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Ordre de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +#, fuzzy +msgid "Payment Order Ok" +msgstr "Ordre de paiement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Ordre de paiements" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Référence du paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Type de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Ligne bancaire du paiement %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +#, fuzzy +msgid "Payment lines" +msgstr "Lignes de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Ordre de paiement %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Paiements" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Mouvement posté" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Référence du paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Lignes de paiement liés" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Identique" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Identique ou vide" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Identique ou vide" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Lignes de paiement bancaires" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Ordres de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Sélectionner les écritures comptables pour créer les opérations" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Sélectionner les lignes d'écriture à payer - Valeurs par défaut" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Sélectionner une date d'exécution requise si vous avez sélectionné 'Date " +"d'échéance' comme type de date d'exécution de paiement." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Ordres de paiement disponibles" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Sélectionner les écritures comptables pour créer les opérations" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "État" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Statut" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Référence structurée" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Mouvements cibles" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "Le montant pour le partenaire '%s' est négatif ou nul (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Les lignes de paiement bancaires servent à générer le fichier de paiement. " +"Ils sont créés automatiquement à partir des lignes de transaction lors de la " +"confirmation de l'ordre de paiement: une ligne de paiement bancaire peut " +"regrouper plusieurs lignes de transaction si l'option 'Opérations de groupe " +"dans les ordres de paiement' est active sur le mode de paiement." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, fuzzy, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La facture %s n'est pas ouverte" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"Le mode de paiement '%s' a l'option 'Ne pas débiter avant la date " +"d'échéance'. La ligne de paiement %s a une date d'échéance %s qui est " +"postérieure à la date de paiement calculée %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"Le type de paiement (%s) n'est pas le même que le type de paiement du mode " +"de paiement (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "Il n'y a aucune opération sur l'ordre de paiement %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Ce champ est utilisé pour les écritures de journal payables et recevables. " +"Vous pouvez mettre la date limite pour le paiement de cette ligne." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" +"Cet assistant créera des lignes de paiement pour les factures sélectionnées :" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Total (Currency)" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Montant total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Total résiduel" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Opérations" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Type du filtre sur la date" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Value Date" +msgstr "Date d'échéance" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Assistant pour créer des lignes de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"Impossible de supprimer un ordre de paiement mis en ligne. Vous pouvez " +"l'annuler dans le but de faire cela." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"S'il existe des ordres de paiement existants pour les modes de paiement des " +"factures, les lignes de paiement seront ajoutées à ces ordres de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "sur" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"Sinon, de nouveaux ordres de paiement seront créés (un par mode de paiement)." + +#, fuzzy +#~ msgid "Done Date" +#~ msgstr "Date d'échéance" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Journal pour écrire les entrées de paiement lors de la confirmation des " +#~ "ordres de paiement / débit de ce mode" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Nombre de lignes bancaires" + +#~ msgid "Offsetting Account" +#~ msgstr "Compte de compensation" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une valeur pour le " +#~ "'Compte de transfert'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une valeur pour le " +#~ "'Journal de transfert'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une option pour le " +#~ "paramètre 'Compte de compensation'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Payer les lignes du 'fichier télécharché' des ordres de paiement avec une " +#~ "écriture sur ce compte. Vous ne pouvez sélectionner que les comptes " +#~ "marqués pour le rapprochement" + +#~ msgid "Transaction Lines" +#~ msgstr "Lignes de l'opération" + +#~ msgid "Transfer Account" +#~ msgstr "Compte de transfert" + +#~ msgid "Transfer Journal" +#~ msgstr "Journal d'opération" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Pièce comptable de l'opération" + +#~ msgid "Due date" +#~ msgstr "Date d'échéance" + +#~ msgid "ISO" +#~ msgstr "ISO" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "No Journal Entry on invoice %s" +#~ msgstr "Pas de pièce comptable sur la facture %s" + +#, fuzzy +#~ msgid "Payment Order / Payment" +#~ msgstr "Ordre de paiement" + +#~ msgid "Account Entry" +#~ msgstr "Pièce comptable" + +#~ msgid "" +#~ "The invoice %s has a payment mode '%s' which is not selectable in payment " +#~ "orders." +#~ msgstr "" +#~ "La facture %s a un mode de paiement '%s' qui n'est pas sélectionnable " +#~ "dans les ordres de paiement." + +#~ msgid "Total company currency" +#~ msgstr "Total dans la devise de la société" diff --git a/account_payment_order/i18n/fr_FR.po b/account_payment_order/i18n/fr_FR.po new file mode 100644 index 000000000..c58da02ef --- /dev/null +++ b/account_payment_order/i18n/fr_FR.po @@ -0,0 +1,1433 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-04-15 17:46+0000\n" +"Last-Translator: Yves Le Doeuff \n" +"Language-Team: none\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"Lignes de paiement %d ont été ajouté à l'ordre de paiement %s en brouillon." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"Lignes de paiement %d ont été ajouté au nouveau ordre de paiement %s qui a " +"été automatiquement créé." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Devise société:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Type de Paiement:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Compte utilisé:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"Une ligne de paiement existe déjà avec cette référence dans la même société !" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Un BIC valide contient 8 ou 11 caractères. Le BIC '%s' contient %d " +"caractères, donc il n'est pas valide." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Comptabilité / Paiements" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Options des pièces comptables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activez cette option si cette méthode de paiement vous demande de connaître " +"le numéro de compte bancaire de votre client ou fournisseur." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Ajouter des écritures comptables" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Ajouter à l'ordre de débit" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Ajouter à l'ordre de paiement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Ajouter à l'ordre de paiement/débit" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Toutes les écritures" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Toutes les écritures passées" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Autoriser les lignes d'écriture en litige" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Journaux autorisés" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Montant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Montant dans la devise société" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Tout" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Nbre de pièces jointes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Pièces jointes" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Remettre en brouillon" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banque" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Compte bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Compte bancaire requis" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Journal de banque" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Ligne de paiement bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Référence de la ligne de paiement bancaire" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Lignes de paiement bancaires" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Compte bancaire sur lequel nous devrions payer le fournisseur" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"Impossible de rapprocher : aucune ligne d'écriture pour la ligne de paiement " +"%s du partenaire '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Paiements annulés" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"Impossible de supprimer une ligne d'ordre de paiement tant que l'ordre de " +"paiement est dans l'état '%s'. Vous devez tout d'abord l'annuler." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Cliquez sur Ajouter toutes les lignes d'écriture pour sélectionner " +"automatiquement les lignes correspondant aux critères ci-dessus ou cliquez " +"sur Ajouter un élément pour sélectionner manuellement les lignes d'écriture " +"filtrées par les critères ci-dessus." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Communication" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Type de communication" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Société" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Compte bancaire de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Confirmer le paiement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Confirmé" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Créer" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Créer les lignes de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Créer les lignes de paiement à partir de la pièce comptable" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Créer les opérations" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Créer les opérations à partir des écritures comptables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Créer les lignes de paiement à partir de la liste des factures" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Créée par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Créée le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Devise" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Devise de l'opération de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Ordre de prélèvement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Ordres de prélèvement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Prélèvement ligne bancaire %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Ordre de prélèvement %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Date d'exécution du paiement par défaut" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "Interdire le prélèvement avant la date d'échéance" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Brouillon" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Échéance" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Date d'échéance" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fichier généré" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Date de la génération du fichier" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Fichier téléchargé avec succès" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Date de téléchargement du fichier" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fichier téléchargé" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Date fixe" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Abonnés" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Pour le partenaire '%s', le compte de la ligne d'écriture à payer (%s) est " +"différent du compte de la ligne d'écriture du transfert (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Pour les modes de paiement qui sont toujours rattachés au même compte " +"bancaire de votre société (par exemple, le transfert de clients ou le " +"prélèvement SEPA auprès de fournisseurs), sélectionnez 'Fixe'. Pour les " +"modes de paiement qui ne sont pas toujours rattachés au même compte bancaire " +"(comme le prélèvement SEPA direct pour les clients, le transfert bancaire " +"aux fournisseurs), vous devez choisir 'Variable', ce qui signifie que vous " +"sélectionnez le compte bancaire sur l'ordre de paiement. Si votre entreprise " +"ne dispose que d'un compte bancaire, vous devez toujours sélectionner 'Fixe'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Libre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Référence libre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Générer des écritures comptables lors du téléchargement de fichier" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Générer un fichier de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Fichier généré" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Généré par" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Grouper les opérations des ordres de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Si coché, les lignes de l'opération de l'ordre de paiement seront groupées " +"lors de la confirmation de l'ordre de paiement. Le regroupement ne sera " +"effectué que si les champs suivants correspondent :\n" +"Partenaire\n" +"* Devise\n" +"* Compte bancaire de destination\n" +"* Date de paiement\n" +"Et si le 'Type de communication' est 'Libre'\n" +"(D'autres modules peuvent définir des champs supplémentaires pour " +"restreindre le regroupement.)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" +"Si vous activez cette option sur un mode de paiement entrant, un message " +"d'erreur s'affichera lorsque vous confirmez un ordre de prélèvement " +"comportant une ligne de paiement dont la date de paiement est antérieure à " +"la date d'échéance." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Immédiatement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Entrant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Ordre de paiement entrant uniquement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Ref Facture" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "Est abonné" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Pièces comptables" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "Ecriture" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Écriture comptable" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtre sur les journaux" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Garder vide pour utiliser tous les journaux" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Garder vide pour utiliser tous les partenaires" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Libellé du paiement qui sera vu par le destinataire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Dernière modification par" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Lien vers le compte bancaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Lié à une facture ou à un avoir" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Pièce jointe principale" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Journal bancaire manquant sur l'ordre de paiement %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "Compte bancaire du partenaire manquant sur la ligne de paiement %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Journal bancaire manquant sur le journal '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Écriture" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Date du mouvement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Écritures comptables" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Option écriture" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "La ligne d'écriture '%s' du partenaire '%s' a déjà été lettrée" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Nom ou description" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" +"Aucune ligne de paiement créée pour la facture %s parce qu'elle existe déjà " +"ou parce que cette facture est déjà payée." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "Pas de mode de paiement sur la facture %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" +"Aucun gestionnaire pour ce mode de paiement. Vous n'avez peut-être pas " +"installé le module Odoo associé." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Numéro" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Nombre d'actions" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Nombre d'erreurs" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Nombre de messages non lus" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" +"Sur l'ordre de paiement %s, la date d'exécution du paiement est passée (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" +"Sur le mode de paiement '%s', vous devez choisir une option pour le " +"paramètre 'Option d'écriture'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Un mouvement par date de paiement" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Un mouvement par ligne de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Uniquement pour les ordres de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Options pour les ordres de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Sortant" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Ordre de paiement sortant uniquement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Partenaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Compte bancaire partenaire" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Partenaires" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Date de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Date d'exécution du paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Type de la date d'exécution du paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Fichier de paiement" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Lignes de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Méthode de paiement" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Méthodes de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Mode de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Mode de paiement sur la facture" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modes de paiement" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Ordre de paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Ordre de paiement OK" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Ordre de paiements" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Référence du paiement" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Type de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Ligne bancaire du paiement %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "Lignes de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Ordre de paiement %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Paiements" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "Mouvement posté" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "Type de Référence" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Lignes de paiement liés" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Identique" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Identique ou vide" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Identique ou vide" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Lignes de paiement bancaires" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Ordres de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Sélectionner les écritures comptables pour créer les opérations" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Sélectionner les lignes d'écriture à payer - Valeurs par défaut" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" +"Sélectionner une date d'exécution requise si vous avez sélectionné 'Date " +"d'échéance' comme type de date d'exécution de paiement." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Ordres de paiement disponibles" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Sélectionner les écritures comptables pour créer les opérations" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "État" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Statut" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Référence structurée" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Mouvements cibles" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "Modèle pour l'impression de l'ordre de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "Le montant pour le partenaire '%s' est négatif ou nul (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" +"Les lignes de paiement bancaires servent à générer le fichier de paiement. " +"Ils sont créés automatiquement à partir des lignes de transaction lors de la " +"confirmation de l'ordre de paiement: une ligne de paiement bancaire peut " +"regrouper plusieurs lignes de transaction si l'option 'Opérations de groupe " +"dans les ordres de paiement' est active sur le mode de paiement." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "La facture %s n'est pas validée" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" +"Le mode de paiement '%s' a l'option 'Ne pas débiter avant la date " +"d'échéance'. La ligne de paiement %s a une date d'échéance %s qui est " +"postérieure à la date de paiement calculée %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" +"Le type de paiement (%s) n'est pas le même que le type de paiement du mode " +"de paiement (%s)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "Il n'y a aucune opération sur l'ordre de paiement %s." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" +"Ce champ est utilisé pour les écritures de journal payables et recevables. " +"Vous pouvez mettre la date limite pour le paiement de cette ligne." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" +"Cette option permet d'imposer l'utilisation d'ordres de paiement pour " +"certains modes de paiement." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" +"Cet assistant créera des lignes de paiement pour les factures sélectionnées :" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Total (en devise)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Montant total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Total résiduel" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total dans la devise de la société" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Opérations" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Type du filtre sur la date" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Messages non lus" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Nbre de messages non lus" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "Date de valeur" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "Assistant pour créer des lignes de paiement" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"Impossible de supprimer un ordre de paiement mis en ligne. Vous pouvez " +"l'annuler dans le but de faire cela." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" +"s'il existe des ordres de paiement existants pour les modes de paiement des " +"factures, les lignes de paiement seront ajoutées à ces ordres de paiement" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "sur" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" +"sinon, de nouveaux ordres de paiement seront créés (un par mode de paiement)." + +#~ msgid "Done" +#~ msgstr "Fait" + +#~ msgid "Done Date" +#~ msgstr "Fait le" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Journal pour écrire les entrées de paiement lors de la confirmation des " +#~ "ordres de paiement / débit de ce mode" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Nombre de lignes bancaires" + +#~ msgid "Offsetting Account" +#~ msgstr "Compte de compensation" + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Account'." +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une valeur pour le " +#~ "'Compte de transfert'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select a value for the 'Transfer " +#~ "Journal'." +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une valeur pour le " +#~ "'Journal de transfert'." + +#~ msgid "" +#~ "On the payment mode '%s', you must select an option for the 'Offsetting " +#~ "Account' parameter" +#~ msgstr "" +#~ "Sur le mode de paiement '%s', vous devez sélectionner une option pour le " +#~ "paramètre 'Compte de compensation'" + +#~ msgid "" +#~ "Pay off lines in 'file uploaded' payment orders with a move on this " +#~ "account. You can only select accounts that are marked for reconciliation" +#~ msgstr "" +#~ "Payer les lignes du 'fichier télécharché' des ordres de paiement avec une " +#~ "écriture sur ce compte. Vous ne pouvez sélectionner que les comptes " +#~ "marqués pour le rapprochement" + +#~ msgid "Transaction Lines" +#~ msgstr "Lignes de l'opération" + +#~ msgid "Transfer Account" +#~ msgstr "Compte de transfert" + +#~ msgid "Transfer Journal" +#~ msgstr "Journal d'opération" + +#~ msgid "Transfer Journal Entries" +#~ msgstr "Pièce comptable de l'opération" diff --git a/account_payment_order/i18n/gl.po b/account_payment_order/i18n/gl.po new file mode 100644 index 000000000..a40b077f1 --- /dev/null +++ b/account_payment_order/i18n/gl.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/hr.po b/account_payment_order/i18n/hr.po new file mode 100644 index 000000000..3fb630e99 --- /dev/null +++ b/account_payment_order/i18n/hr.po @@ -0,0 +1,1317 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Sve stavke" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Sve proknjižene stavke" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Iznos" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Iznos u lokalnoj valuti" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Bilokoji" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +#, fuzzy +msgid "Attachment Count" +msgstr "Prilozi" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Prilozi" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Nazad u nacrt" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banka" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bankovni račun" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Bankovni račun je obavezan" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Dnevnik banke" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Stavke izvoda" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Potvrdi plaćanja" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Potvrđeno" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Kreiraj" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Kreiraj stavke plaćanja" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Kreiraj stavke plaćanja iz stavaka dnevnika" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Kreiraj transakciju" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Kreirao" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Valuta" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Valuta transakcije" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Dnevnik banke" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +#, fuzzy +msgid "Main Attachment" +msgstr "Prilozi" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Stavke plaćanja" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Modeli plaćanja" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Modeli plaćanja" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +#, fuzzy +msgid "Payment Order Ok" +msgstr "Nalog za plaćanje" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +#, fuzzy +msgid "Payment lines" +msgstr "Stavke plaćanja" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/it.po b/account_payment_order/i18n/it.po new file mode 100644 index 000000000..61717c0a6 --- /dev/null +++ b/account_payment_order/i18n/it.po @@ -0,0 +1,1309 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2019-04-03 12:14+0000\n" +"Last-Translator: Marco Calcagni \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Totale" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Aggiungi a ordine di Addebito" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Aggiungi a ordine di Pagamento/Addebito" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Creato da" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Aggiungi a ordine di Addebito" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordine" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Aggiungi a ordine di Pagamento/Addebito" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/lt.po b/account_payment_order/i18n/lt.po new file mode 100644 index 000000000..617ed8a07 --- /dev/null +++ b/account_payment_order/i18n/lt.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/nb_NO.po b/account_payment_order/i18n/nb_NO.po new file mode 100644 index 000000000..399ea3e4a --- /dev/null +++ b/account_payment_order/i18n/nb_NO.po @@ -0,0 +1,1335 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"En betalingslinje eksisterer allerede med denne referansen i det samme " +"firmaet!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"En gyldig BIC inneholder 8 eller 11 tegn. '%s' inneholder %d tegn, så den er " +"ikke gyldig." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Legg til betalingsordre" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Alle oppføringer" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Sum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Noen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +#, fuzzy +msgid "Attachment Count" +msgstr "Vedlegg" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Vedlegg" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Tilbake til Drøftinger" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Bank" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Bankkonto påkrevd" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Bankjournal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Bankkonto som vi skal betale til leverandøren med" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Kanseller betalinger" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Kommunikasjon" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Kommunikasjonstype" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Firmabankkonto" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Bekreft betalinger" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Bekrefter" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Lag" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Lag transaksjoner" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Laget av" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Myntenhet" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Betalingstransaksjonens myntenhet" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Betalingsordre" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Drøfting" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Utløper" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Utløpsdato" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fil generert" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Filgenereringsdato" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Filopplastning vellykket" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Filopplastningsdato" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fil lastet opp" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Gratis" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Betalingsreferanse" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Generer betalingsfil" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Generert fil" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Generert av" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Umiddelbart" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Innkommende" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Betalingsordre" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Bankjournal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Journaloppføringer" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Journalgjenstand" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Journalfilter" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Sist modifisert den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Lenke til bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +#, fuzzy +msgid "Main Attachment" +msgstr "Vedlegg" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#, fuzzy +msgid "Name or Description" +msgstr "Samme eller tomme" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Antall" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +#, fuzzy +msgid "Number of Actions" +msgstr "Samme eller tomme" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +#, fuzzy +msgid "Number of errors" +msgstr "Samme eller tomme" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Legg til betalingsordre" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordre" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Betalingsordre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Partnerbankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Betalingsdato" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Betalingsfil" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Betalingsmetode" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Betalingsmetode" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Betalingsordre" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +#, fuzzy +msgid "Payment Order Ok" +msgstr "Betalingsordre" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Betalingsreferanse" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Betalingstype" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +#, fuzzy +msgid "Payment lines" +msgstr "Betalingsfil" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Betalinger" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Betalingsreferanse" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Samme" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Samme eller tomme" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Samme eller tomme" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Søk for betalingsordre" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Tilstand" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Totalsum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Totalt firmabeholdning" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transaksjoner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "på" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" + +#~ msgid "Transfer Account" +#~ msgstr "Transaksjonskonto" + +#~ msgid "Transfer Journal" +#~ msgstr "Transaksjonsjournal" + +#~ msgid "Due date" +#~ msgstr "Utløpsdato" diff --git a/account_payment_order/i18n/nl.po b/account_payment_order/i18n/nl.po new file mode 100644 index 000000000..f2a5dd0d5 --- /dev/null +++ b/account_payment_order/i18n/nl.po @@ -0,0 +1,1376 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-01 15:18+0000\n" +"PO-Revision-Date: 2021-04-23 18:47+0000\n" +"Last-Translator: Bosd \n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" +"%d bank betaalregels zijn toegevoegd aan de bestaande concept betaalopdracht " +"%s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" +"%d betalingsregels toegevoegd aan de nieuwe concept betalingsopdracht %s die " +"automatisch is aangemaakt." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Bedrijfsvaluta:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "Uitvoering:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Betaalingstype:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referentie" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Totaal" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Gebruike rekening:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" +"Er bestaat reeds een regel met dezelfde referentie binnen hetzelfde bedrijf!" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"Een valide BIC bevat 8 of 11 karakters. De BIC '%s; bevat %d karakters en " +"is niet valide." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Boekhouding / Betalingen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "Boekhoud opties" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Actie vereist" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activeer deze optie als de betaalwijze verwacht dat u het bankrekeningnummer " +"van uw klant of leverancier kent." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "Toevoegen alle mutaties" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Toevoegen aan betaalopdracht" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Toevoegen aan betaalopdracht" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Toevoegen aan betaalopdracht" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Alle boekingen" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Ale definitieve boekingen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "Aanmaken van boekingsregels toestaan" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Bedrag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Bedrag in bedrijfsvaluta" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Iedere" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +#, fuzzy +msgid "Attachment Count" +msgstr "Bijlages" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Bijlages" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Terug naar concept" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Bank" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bankrekeningen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Bankrekening verplicht" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Bankboek" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Betaalopdrachtregel" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Betaalregel referentie" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Bank betaalregels" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Bankrekening waarop de leverancier etaald dient te worden" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" +"Kan niet afletteren: geen boekingsregel voor betalingsregel %s van relatie " +"'%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Annuleer betalingen" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" +"Kan een betalingsorderregel waarvan de betalingsopdracht in de status '%s' " +"bevindt niet verwijderen. U dient deze eerst te annuleren." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "Selecteer de filters voor de boekingsregels" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" +"Klik op Alle boekingsregels toevoegen om automatisch de regels te selecteren " +"die voldoen aan de bovenstaande criteria of klik op Een item toevoegen om " +"handmatig de verplaatsingslijnen te selecteren die zijn gefilterd op de " +"bovenstaande criteria." + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Communicatie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Communicatie type" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Bankrekening bedrijf" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Bevestig betalingen" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Bevestigd" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Aanmaken" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "Aanmaken betaalregels" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "Aanmaken betaalregels van boekingen" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Aanmaken transacties" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "Aanmaken transacties van boekingen" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "Aanmaken betaalregels van factuur lijstweergave" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Valuta" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Valuta van de betaaltransactie" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Inkomende Betaalopdrachten" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Inkomende Betaalopdrachten" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "Debit betaalregel %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Betaalopdrachten %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Standaard betaalopdracht uitvoeringsdatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Omschrijving" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "Sta geen debit toe voor vervaldatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Weergave naam" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Concept" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Vervallen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Vervaldatum" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Bestand aangemaakt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Bestand aanmaakdatum" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Bestand succesvol geuploaded" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Bestand upload datum" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Bestand geuploaded" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Vaste datum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Volgers" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Volgers (Kanalen)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Volgers (Relaties)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" +"Voor relatie '%s', is de GB rekening van de boekingsregel voor betaling (%s) " +"anders dan de GB Rekening voor de boekingsregel voor de tussenboeking (%s)." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Gratis" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Betaalreferentie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Maak financiele boekingen bij bestand upload" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Aanmaken betaalbestand" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Aaangemaakt bestand" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Aangemaakt door" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Groepeer op" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Groepeer transacties in betaalopdracht" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Indien aangevinkt, vereisen nieuwe berichten uw aandacht." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +#, fuzzy +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" +"Als dit vinkje is aangevinkt, worden de transactieregels van de " +"betalingsopdracht gegroepeerd bij bevestiging van de betalingsopdracht.De " +"groepering vindt alleen plaats als de volgende velden overeenkomen:\n" +"* Relatie\n" +"* Valuta\n" +"* Bestemmingsbankrekening\n" +"* Betaaldatum\n" +"en als het 'communicatie omschrijving' 'vrij' is\n" +"(andere modules kunnen extra velden instellen om de groepering te beperken.)" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Direct" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Inkomend" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Betalingsopdracht" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Factuur referentie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Bankboek" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Boekingsregel" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "Boekingsregel" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Dagboek filters" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Laat leeg voor alle dagboeken" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +#, fuzzy +msgid "Keep empty to use all partners" +msgstr "Laat leeg voor alle dagboeken" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Koppeling naar bankrekening" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Gekoppeld aan een factuur of credit factuur" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +#, fuzzy +msgid "Main Attachment" +msgstr "Bijlages" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Berichten" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Ontbrekend bankboek op betaalopdracht %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "Ontbrekenende bankrekening van relatie op betaalregel %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Mutatie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Mutatie datum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "Mutatieregels" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "Mutatie optie" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "Muttaieregel '%s' van relatie '%s' is al afgeletterd" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#, fuzzy +msgid "Name or Description" +msgstr "Zelfde of leeg" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "Geen betaalmode van factuur %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "Nummer" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +#, fuzzy +msgid "Number of Actions" +msgstr "Aantal bankregels" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Aantal fouten" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +#, fuzzy +msgid "Number of unread messages" +msgstr "Aantal bankregels" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "Bij betaaloptracht %s, ligt de uitvoeringsdatum in het verleden (%s)." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "Één boeking per betaaldatum" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "Één boeking per betaalregel" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Betaalopdrachten" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Betaalopdrachten" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Volgorde" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "UItgaand" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Toevoegen aan betaalopdracht" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Relatie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Bankrekening relatie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +#, fuzzy +msgid "Partners" +msgstr "Relatie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Betaaldatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Betaaldatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "Betaaldatum soort" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Betaalbestand" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Betaalregels" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Betaalwijze" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Betaalwijze" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Betaalwijze" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Betaalmode op factuur" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Betaalwijze" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Betalingsopdracht" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Uitgaande Betaalopdrachten" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Betaalreferentie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Betaalwijze" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "Betaalregel %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Betaalopdracht %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Betalingen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Betaalreferentie" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Gekoppelde betaalregels" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Zelfde" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Zelfde of leeg" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Zelfde of leeg" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "Zoek in bank betaalregels" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Zoek in betaalopdrachten" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "Selecteer de boekingen om transacties aan te maken" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Selecteer boekinen te betalen - Standaard waardes" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Selecteerbaar in betaalopdrachten" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "Selecteer boekingen om transacties aan te maken" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Staat/Provincie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Gestructureerde referentie" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "Welke mutaties" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Totaalbedrag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "Totaal in bedrijfsvaluta" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "Totaal resterend" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Totaal in bedrijfsvaluta" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transacties" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Soort datumfilter" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "op" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" + +#~ msgid "" +#~ "Journal to write payment entries when confirming payment/debit orders of " +#~ "this mode" +#~ msgstr "" +#~ "Journaal om betalingsregels weg te schrijven bij het bevestigen van " +#~ "betalings- / debetorders van deze modus" + +#~ msgid "Number of Bank Lines" +#~ msgstr "Aantal bankregels" + +#~ msgid "Due date" +#~ msgstr "Vervaldatum" + +#~ msgid "ISO" +#~ msgstr "ISO" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "No Journal Entry on invoice %s" +#~ msgstr "Geen boekingen van factuur %s" + +#~ msgid "Account Entry" +#~ msgstr "Boeking" diff --git a/account_payment_order/i18n/nl_BE.po b/account_payment_order/i18n/nl_BE.po new file mode 100644 index 000000000..9b40cff5c --- /dev/null +++ b/account_payment_order/i18n/nl_BE.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/nl_NL.po b/account_payment_order/i18n/nl_NL.po new file mode 100644 index 000000000..da59d4078 --- /dev/null +++ b/account_payment_order/i18n/nl_NL.po @@ -0,0 +1,1308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Order" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Order" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/pl.po b/account_payment_order/i18n/pl.po new file mode 100644 index 000000000..2f069808a --- /dev/null +++ b/account_payment_order/i18n/pl.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/pt.po b/account_payment_order/i18n/pt.po new file mode 100644 index 000000000..b2338baa1 --- /dev/null +++ b/account_payment_order/i18n/pt.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/pt_BR.po b/account_payment_order/i18n/pt_BR.po new file mode 100644 index 000000000..b1253a34f --- /dev/null +++ b/account_payment_order/i18n/pt_BR.po @@ -0,0 +1,1320 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-01 15:18+0000\n" +"PO-Revision-Date: 2018-05-01 15:18+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Voltar para provisório" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Conta bancária" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Linha de pagamento bancário" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Referência do pagamento" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Linhas de pagamento bancária" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Comunicação" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Ordem de Pagamento" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Provisório" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Vence em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Data de vencimento" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Referência estruturada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Ordem de Pagamento" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Filtro de diário" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Filtro de diário" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Manter vazio para usar todos os diários" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +#, fuzzy +msgid "Keep empty to use all partners" +msgstr "Manter vazio para usar todos os diários" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Vinculado a uma fatura ou reembolso" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Movimentação" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Data da movimentação" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Ordens de Pagamento" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Ordem" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Ordem de Pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Parceiro" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Conta bancária parceiro" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +#, fuzzy +msgid "Partners" +msgstr "Parceiro" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Linhas do pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Modo de Pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Modo de Pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Ordem de Pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Ordens de Pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tipo de pagamento" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Referência estruturada" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Linhas relacionadas do pagamento" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Selecionar os movimentos para pagar - Valores padrão" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Referência estruturada" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "O total para o parceiro '%s' é negativo ou nulo (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Valor total" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Total na moeda da empresa" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Tipo de filtro de data" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_payment_order/i18n/pt_PT.po b/account_payment_order/i18n/pt_PT.po new file mode 100644 index 000000000..3a81b8dd0 --- /dev/null +++ b/account_payment_order/i18n/pt_PT.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Rascunho" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Estado" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/ro.po b/account_payment_order/i18n/ro.po new file mode 100644 index 000000000..0b0e3cb39 --- /dev/null +++ b/account_payment_order/i18n/ro.po @@ -0,0 +1,1307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/ru.po b/account_payment_order/i18n/ru.po new file mode 100644 index 000000000..3f77d11b6 --- /dev/null +++ b/account_payment_order/i18n/ru.po @@ -0,0 +1,1308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/sl.po b/account_payment_order/i18n/sl.po new file mode 100644 index 000000000..3a5953e65 --- /dev/null +++ b/account_payment_order/i18n/sl.po @@ -0,0 +1,1320 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-01 15:18+0000\n" +"PO-Revision-Date: 2018-05-01 15:18+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Znesek" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Vrni v osnutek" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Banka" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bančni račun" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "Postavka bančnega plačila" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "Sklic postavke bančnega plačila" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "Postavke bančnih plačil" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Komunikacija" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Družba" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +#, fuzzy +msgid "Debit Order" +msgstr "Plačilni nalog" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Osnutek" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "Zapadlost" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Datum zapadlosti" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +#, fuzzy +msgid "Free Reference" +msgstr "Strukturiran sklic" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Združi po" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +#, fuzzy +msgid "Inbound Payment Order Only" +msgstr "Plačilni nalog" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +#, fuzzy +msgid "Journal" +msgstr "Dnevniški filter" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Dnevniški filter" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Pustite prazno za uporabo vseh dnevnikov" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +#, fuzzy +msgid "Keep empty to use all partners" +msgstr "Pustite prazno za uporabo vseh dnevnikov" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Vezano na račun ali vračilo" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "Premik" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "Datum premika" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +#, fuzzy +msgid "Only for payment orders" +msgstr "Plačilni nalogi" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Nalog" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +#, fuzzy +msgid "Outbound Payment Order Only" +msgstr "Plačilni nalog" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Partner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Bančni račun partnerja" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +#, fuzzy +msgid "Partners" +msgstr "Partner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Plačilne postavke" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +#, fuzzy +msgid "Payment Methods" +msgstr "Metoda plačila" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Metoda plačila" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Plačilni nalog" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Plačilni nalogi" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Tip plačila" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +#, fuzzy +msgid "Reference Type" +msgstr "Strukturiran sklic" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "Povezane plačilne postavke" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "Izbira postavk premikov za plačilo - privzete vrednosti" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "Stanje" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Strukturiran sklic" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "Znesek za partnerja '%s' je negativen ali ničen (%.2f) !" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Skupni znesek" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "Skupaj v valuti družbe" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Tip datumskega filtra" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_payment_order/i18n/sv.po b/account_payment_order/i18n/sv.po new file mode 100644 index 000000000..594e23fb1 --- /dev/null +++ b/account_payment_order/i18n/sv.po @@ -0,0 +1,1308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-11-17 13:36+0000\n" +"Last-Translator: Simon S \n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "Bolagets valuta:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "Betalningstyp:" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "Referens" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "Totalt" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "Använt konto:" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" +"En giltig BIC innehåller 8 eller 11 tecken. BIC '%s' innehåller %d tecken " +"och är därför inte giltig." + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "Redovisning / Betalningar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "Åtgärd behövs" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Aktivera det här alternativet om den här betalningsmetoden kräver att du " +"måste känna till kundens eller leverantörens bankkontonummer." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "Lägg till i debiteringsorder" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "Lägg till i betalningsorder" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "Lägg till i betalnings-/debiteringsorder" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "Alla poster" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "Alla bokförda poster" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "Tillåtna journaler" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "Belopp" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "Belopp i bolagets valuta" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "Alla" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "Antal bilagor" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "Bilagor" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "Tillbaka till utkast" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "Bank" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "Bankkonto krävs" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "Bankjournal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "Banktransaktioner" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "Bankkonto som leverantören ska betalas på" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "Avbryt betalningar" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You" +" need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above" +" criteria or click on Add an item to manually select the move lines filtered" +" by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "Kommunikation" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "Kommunikationstyp" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "Bolag" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "Bolagets bankkonto" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "Bekräfta betalningar" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "Bekräftad" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "Skapa" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "Skapa transaktioner" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Skapad av" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "Valuta" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "Betalningstransaktionens valuta" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "Debiteringsorder" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "Debiteringsordrar" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "Debiteringsorder %s" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "Standarddatum för genomförande av betalning" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "Beskrivning" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "Utkast" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "Förfallodag" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "Fil genererad" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "Datum för filgenerering" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "Filen har laddats upp framgångsrikt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "Datum för filuppladdning" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "Fil uppladdad" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "Fast datum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "Följare" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "Följare (Kanaler)" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "Följare (Partners)" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "Fri" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "Fri referens" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "Generera bokföringsposter vid filuppladdning" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "Generera betalningsfil" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "Genererad fil" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "Genererad av" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "Gruppera efter" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "Gruppera transaktioner i betalningsordrar" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "Om den är ikryssad behöver nya meddelanden din uppmärksamhet." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Om den är ikryssad har vissa meddelanden ett leveransfel." + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be grouped upon confirmation of the payment order.The grouping will be done only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "Omedelbart" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "Inkommande" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "Endast inkommande betalningsorder" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "Fakturans referens" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "Verifikat" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "Verifikat" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "Journalfilter" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "Lämna tom för att använda alla journaler" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "Lämna tom för att använda alla partners" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "Betalningens etikett som kommer att ses av mottagaren" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "Senast modifierad den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad den" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "Länk till bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "Kopplad till en faktura eller återbetalning" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "Huvudbilaga" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "Fel vid meddelandeleverans" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "Meddelanden" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "Bankjournal saknas på betalningsorder %s." + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "Bankkonto saknas på bankjournal '%s'." + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "Namn eller beskrivning" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "Inget betalningssätt på faktura %s" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "Antal åtgärder" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "Antal banktransaktioner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "Antal verifikat" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "Antal fel" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Antal meddelanden som behöver en åtgärd" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Antal meddelanden med leveransfel" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "Antal olästa meddelanden" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "Endast för betalningsordrar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "Alternativ för betalningsordrar" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "Order" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "Utgående" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "Endast utgående betalningsordrar" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "Partner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "Partners bankkonto" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "Partners" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "Betalningsdatum" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "Datum för genomförande av betalning" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "Betalfil" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "Betalningsrader" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "Betalningsmetod" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "Betalningsmetoder" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "Betalningssätt" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "Betalningssätt på faktura" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "Betalningssätt" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "Betalningsorder" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "Betalningsorder ok" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "Betalningsordrar" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "Betalningsreferens" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "Betalningstyp" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "Betalningsorder %s" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "Betalningar" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "Referenstyp" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Fel vid leverans av SMS" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "Samma" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "Samma eller tom" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "Samma eller tom" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "Sök betalningsordrar" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "Valbar i betalningsordrar" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "Status" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "Strukturerad referens" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "Totalt (valuta)" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "Totalt belopp" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "Transaktioner" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "Typ av datumfilter" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "Olästa meddelanden" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" +"Du kan inte ta bort en uppladdad betalningsorder. Du kan avbryta den för att " +"göra det." + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/th.po b/account_payment_order/i18n/th.po new file mode 100644 index 000000000..bf60411af --- /dev/null +++ b/account_payment_order/i18n/th.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/tr.po b/account_payment_order/i18n/tr.po new file mode 100644 index 000000000..059184b7a --- /dev/null +++ b/account_payment_order/i18n/tr.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 03:38+0000\n" +"PO-Revision-Date: 2017-11-23 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/i18n/vi.po b/account_payment_order/i18n/vi.po new file mode 100644 index 000000000..01cd0abb9 --- /dev/null +++ b/account_payment_order/i18n/vi.po @@ -0,0 +1,1306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "%d payment lines added to the existing draft payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"%d payment lines added to the new draft payment order %s which has been " +"automatically created." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Company Currency:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Execution:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Type:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Reference" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Used Account:" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.constraint,message:account_payment_order.constraint_account_payment_line_name_company_unique +msgid "A payment line already exists with this reference in the same company!" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/res_bank.py:0 +#, python-format +msgid "" +"A valid BIC contains 8 or 11 characters. The BIC '%s' contains %d " +"characters, so it is not valid." +msgstr "" + +#. module: account_payment_order +#: model:res.groups,name:account_payment_order.group_account_payment +msgid "Accounting / Payments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Accounting Entries Options" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Add All Move Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Debit Order" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_move_form +msgid "Add to Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_invoice_create_account_payment_line_action +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_invoice_tree +msgid "Add to Payment/Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__all +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__all +msgid "All Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__target_move__posted +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_target_move__posted +msgid "All Posted Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__allow_blocked +msgid "Allow Litigation Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__allowed_journal_ids +msgid "Allowed journals" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__amount_company_currency +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__amount_company_currency +msgid "Amount in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__any +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__any +msgid "Any" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Attachments" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Back to Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_res_bank +msgid "Bank" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_bank_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__journal_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Bank Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__bank_payment_line_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__bank_line_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Bank Payment Line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__name +msgid "Bank Payment Line Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.bank_payment_line_action +#: model:ir.model,name:account_payment_order.model_bank_payment_line +#: model:ir.ui.menu,name:account_payment_order.bank_payment_line_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_move_line__partner_bank_id +msgid "Bank account on which we should pay the supplier" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Can not reconcile: no move line for payment line %s of partner '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__cancel +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Cancel Payments" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"Cannot delete a payment order line whose payment order is in state '%s'. You " +"need to cancel it first." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Choose Move Lines Filter Options" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "" +"Click on Add All Move Lines to auto-select the move lines matching the above " +"criteria or click on Add an item to manually select the move lines filtered " +"by the above criteria." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication +msgid "Communication" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__communication_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__communication_type +msgid "Communication Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Communication is empty on payment line %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_partner_bank_id +msgid "Company Bank Account" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Confirm Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__open +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Confirmed" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "Create Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Create Payment Lines from Journal Items" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_create_action +msgid "Create Transactions from Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_invoice_payment_line_multi +msgid "Create payment lines from invoice tree view" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_uid +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Created by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__create_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__company_currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__company_currency_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__currency_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__currency_id +msgid "Currency of the Payment Transaction" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Debit Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu +msgid "Debit Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit bank line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Debit order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered +msgid "Default Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__description +msgid "Description" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "Disallow Debit Before Maturity Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__display_name +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__draft +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Draft" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__due +msgid "Due" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__ml_maturity_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__due_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__due +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__due +msgid "Due Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generated" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_generated +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Generation Date" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "File Successfully Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Upload Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__state__uploaded +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "File Uploaded" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__fixed +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__fixed +msgid "Fixed Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "" +"For partner '%s', the account of the account move line to pay (%s) is " +"different from the account of of the transit move line (%s)." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__normal +msgid "Free" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__none +msgid "Free Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__generate_move +msgid "Generate Accounting Entries On File Upload" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Generate Payment File" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "Generated File" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__generated_user_id +msgid "Generated by" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__group_lines +msgid "Group Transactions in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__id +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main__id +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank__id +msgid "ID" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__group_lines +msgid "" +"If this mark is checked, the transaction lines of the payment order will be " +"grouped upon confirmation of the payment order.The grouping will be done " +"only if the following fields matches:\n" +"* Partner\n" +"* Currency\n" +"* Destination Bank Account\n" +"* Payment Date\n" +"and if the 'Communication Type' is 'Free'\n" +"(other modules can set additional fields to restrict the grouping.)" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_mode__no_debit_before_maturity +msgid "" +"If you activate this option on an Inbound payment mode, you will have an " +"error message when you confirm a debit order that has a payment line with a " +"payment date before the maturity date." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_prefered__now +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__date_prefered__now +msgid "Immediately" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__inbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__inbound_payment_order_only +msgid "Inbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Invoice Ref" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_move_line +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__move_line_id +msgid "Journal Item" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__journal_ids +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_journal_ids +msgid "Journals Filter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty for using all journals" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Keep empty to use all partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__communication +msgid "Label of the payment that will be seen by the destinee" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_report_account_payment_order_print_account_payment_order_main____last_update +#: model:ir.model.fields,field_description:account_payment_order.field_res_bank____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_uid +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_invoice_payment_line_multi__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__write_date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__invoice +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_invoice +msgid "Linked to an Invoice or Refund" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing Bank Journal on payment order %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_line.py:0 +#, python-format +msgid "Missing Partner Bank Account on payment line %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Missing bank account on bank journal '%s'." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_date_type__move +msgid "Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_date +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__date_type__move +msgid "Move Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__move_line_ids +msgid "Move Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__move_option +msgid "Move Option" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/bank_payment_line.py:0 +#, python-format +msgid "Move line '%s' of partner '%s' has already been reconciled" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Name or Description" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "" +"No Payment Line created for invoice %s because it already exists or because " +"this invoice is already paid." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "No Payment Mode on invoice %s" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"No handler for this payment method. Maybe you haven't installed the related " +"Odoo module." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__name +msgid "Number" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__bank_line_count +msgid "Number of Bank Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__move_count +msgid "Number of Journal Entries" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "On payment order %s, the Payment Execution Date is in the past (%s)." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_mode.py:0 +#, python-format +msgid "" +"On the payment mode '%s', you must choose an option for the 'Move Option' " +"parameter." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__date +msgid "One move per payment date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__move_option__line +msgid "One move per payment line" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_method__payment_order_only +msgid "Only for payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Options for Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_order__payment_type__outbound +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_journal__outbound_payment_order_only +msgid "Outbound Payment Order Only" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_id +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__partner_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Partner" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__partner_bank_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__partner_bank_id +msgid "Partner Bank Account" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__partner_ids +msgid "Partners" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__date +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__date +msgid "Payment Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_scheduled +msgid "Payment Execution Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__date_prefered +msgid "Payment Execution Date Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment File" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action +#: model:ir.model,name:account_payment_order.model_account_payment_line +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__payment_mode +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_mode_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_payment_mode +msgid "Payment Mode on Invoice" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_mode +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.report,name:account_payment_order.action_print_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__order_id +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__order_id +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__payment_order_ok +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_order_ok +msgid "Payment Order Ok" +msgstr "" + +#. module: account_payment_order +#: model:ir.actions.act_window,name:account_payment_order.account_payment_order_outbound_action +#: model:ir.ui.menu,name:account_payment_order.account_payment_order_outbound_menu +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_graph +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_pivot +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__name +msgid "Payment Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_type +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__payment_type +msgid "Payment Type" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment bank line %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_move_line__payment_line_ids +msgid "Payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "Payment order %s" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__post_move +msgid "Post Move" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_bank_statement_line__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_move__reference_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__reference_type +msgid "Reference Type" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same +msgid "Same" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line_create__payment_mode__same_or_null +msgid "Same or Empty" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_mode__default_payment_mode__same_or_null +msgid "Same or empty" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "Search Bank Payment Lines" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +msgid "Search Payment Orders" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/wizard/account_payment_line_create.py:0 +#, python-format +msgid "Select Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_form +msgid "Select Move Lines to Pay - Default Values" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__date_scheduled +msgid "" +"Select a requested date of execution if you selected 'Due Date' as the " +"Payment Execution Date Type." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__payment_order_ok +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_mode_search +msgid "Selectable in Payment Orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Selected Move Lines to Create Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line__state +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_search +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_search +msgid "State" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__state +#: model:ir.model.fields,field_description:account_payment_order.field_bank_payment_line__state +msgid "Status" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured +msgid "Structured Reference" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__target_move +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_target_move +msgid "Target Moves" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_report_account_payment_order_print_account_payment_order_main +msgid "Technical model for printing payment order" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "The amount for Partner '%s' is negative or null (%.2f) !" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__bank_line_ids +msgid "" +"The bank payment lines are used to generate the payment file. They are " +"automatically created from transaction lines upon confirmation of the " +"payment order: one bank payment line can group several transaction lines if " +"the option 'Group Transactions in Payment Orders' is active on the payment " +"mode." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_move.py:0 +#, python-format +msgid "The invoice %s is not in Posted state" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment mode '%s' has the option 'Disallow Debit Before Maturity Date'. " +"The payment line %s has a maturity date %s which is after the computed " +"payment date %s." +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"The payment type (%s) is not the same as the payment type of the payment " +"mode (%s)" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "There are no transactions on payment order %s." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_line__ml_maturity_date +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_method__payment_order_only +msgid "" +"This option helps enforcing the use of payment orders for some payment " +"methods." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "This wizard will create payment lines for the selected invoices:" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Total (Currency)" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.bank_payment_line_tree +msgid "Total Amount" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__total_company_currency +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_tree +msgid "Total Company Currency" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_create_form +msgid "Total Residual" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_line_tree +msgid "Total in Company Currency" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__payment_line_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_payment_order_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_line_create__date_type +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_type +msgid "Type of Date Filter" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document +msgid "Value Date" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,field_description:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order +#: model:ir.model.fields,help:account_payment_order.field_account_payment_order__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order +#: model:ir.model,name:account_payment_order.model_account_payment_line_create +msgid "Wizard to create payment lines" +msgstr "" + +#. module: account_payment_order +#: code:addons/account_payment_order/models/account_payment_order.py:0 +#, python-format +msgid "" +"You cannot delete an uploaded payment order. You can cancel it in order to " +"do so." +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "" +"if there are existing draft payment orders for the payment modes of the " +"invoices, the payment lines will be added to those payment orders" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.view_attachment_simplified_form +msgid "on" +msgstr "" + +#. module: account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order.account_invoice_payment_line_multi_form +msgid "otherwise, new payment orders will be created (one per payment mode)." +msgstr "" diff --git a/account_payment_order/migrations/14.0.1.3.0/pre-migration.py b/account_payment_order/migrations/14.0.1.3.0/pre-migration.py new file mode 100644 index 000000000..f5f7ace2c --- /dev/null +++ b/account_payment_order/migrations/14.0.1.3.0/pre-migration.py @@ -0,0 +1,10 @@ +# Copyright 2021 Akretion France (http://www.akretion.com/) +# @author: Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +def migrate(cr, version): + if not version: + return + + cr.execute("UPDATE account_payment_order SET state='uploaded' WHERE state='done'") diff --git a/account_payment_order/models/__init__.py b/account_payment_order/models/__init__.py new file mode 100644 index 000000000..e5537935e --- /dev/null +++ b/account_payment_order/models/__init__.py @@ -0,0 +1,10 @@ +from . import account_payment_mode +from . import account_payment_order +from . import account_payment_line +from . import bank_payment_line +from . import account_move +from . import account_move_line +from . import res_bank +from . import account_payment_method +from . import account_journal +from . import account_payment diff --git a/account_payment_order/models/account_journal.py b/account_payment_order/models/account_journal.py new file mode 100644 index 000000000..e8a298ca1 --- /dev/null +++ b/account_payment_order/models/account_journal.py @@ -0,0 +1,33 @@ +# Copyright 2019 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountJournal(models.Model): + _inherit = "account.journal" + + inbound_payment_order_only = fields.Boolean( + compute="_compute_inbound_payment_order_only", readonly=True, store=True + ) + outbound_payment_order_only = fields.Boolean( + compute="_compute_outbound_payment_order_only", readonly=True, store=True + ) + + @api.depends("inbound_payment_method_line_ids.payment_method_id.payment_order_only") + def _compute_inbound_payment_order_only(self): + for rec in self: + rec.inbound_payment_order_only = all( + p.payment_order_only + for p in rec.inbound_payment_method_line_ids.payment_method_id + ) + + @api.depends( + "outbound_payment_method_line_ids.payment_method_id.payment_order_only" + ) + def _compute_outbound_payment_order_only(self): + for rec in self: + rec.outbound_payment_order_only = all( + p.payment_order_only + for p in rec.outbound_payment_method_line_ids.payment_method_id + ) diff --git a/account_payment_order/models/account_move.py b/account_payment_order/models/account_move.py new file mode 100644 index 000000000..cac14564d --- /dev/null +++ b/account_payment_order/models/account_move.py @@ -0,0 +1,139 @@ +# © 2013-2014 ACSONE SA (). +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models +from odoo.exceptions import UserError + + +class AccountMove(models.Model): + _inherit = "account.move" + + payment_order_id = fields.Many2one( + comodel_name="account.payment.order", + string="Payment Order", + copy=False, + readonly=True, + check_company=True, + ) + payment_order_ok = fields.Boolean(compute="_compute_payment_order_ok") + # we restore this field from <=v11 for now for preserving behavior + # TODO: Check if we can remove it and base everything in something at + # payment mode or company level + reference_type = fields.Selection( + selection=[("none", "Free Reference"), ("structured", "Structured Reference")], + readonly=True, + states={"draft": [("readonly", False)]}, + default="none", + ) + + @api.depends("payment_mode_id", "line_ids", "line_ids.payment_mode_id") + def _compute_payment_order_ok(self): + for move in self: + payment_mode = move.line_ids.filtered(lambda x: not x.reconciled).mapped( + "payment_mode_id" + )[:1] + if not payment_mode: + payment_mode = move.payment_mode_id + move.payment_order_ok = payment_mode.payment_order_ok + + def _prepare_new_payment_order(self, payment_mode=None): + self.ensure_one() + if payment_mode is None: + payment_mode = self.env["account.payment.mode"] + vals = {"payment_mode_id": payment_mode.id or self.payment_mode_id.id} + # other important fields are set by the inherit of create + # in account_payment_order.py + return vals + + def get_account_payment_domain(self, payment_mode): + return [("payment_mode_id", "=", payment_mode.id), ("state", "=", "draft")] + + def create_account_payment_line(self): + apoo = self.env["account.payment.order"] + result_payorder_ids = [] + action_payment_type = "debit" + for move in self: + if move.state != "posted": + raise UserError(_("The invoice %s is not in Posted state") % move.name) + applicable_lines = move.line_ids.filtered( + lambda x: ( + not x.reconciled + and x.payment_mode_id.payment_order_ok + and x.account_id.internal_type in ("receivable", "payable") + and not any( + p_state in ("draft", "open", "generated") + for p_state in x.payment_line_ids.mapped("state") + ) + ) + ) + if not applicable_lines: + raise UserError( + _( + "No Payment Line created for invoice %s because " + "it already exists or because this invoice is " + "already paid." + ) + % move.name + ) + payment_modes = applicable_lines.mapped("payment_mode_id") + if not payment_modes: + raise UserError(_("No Payment Mode on invoice %s") % move.name) + for payment_mode in payment_modes: + payorder = apoo.search( + move.get_account_payment_domain(payment_mode), limit=1 + ) + new_payorder = False + if not payorder: + payorder = apoo.create( + move._prepare_new_payment_order(payment_mode) + ) + new_payorder = True + result_payorder_ids.append(payorder.id) + action_payment_type = payorder.payment_type + count = 0 + for line in applicable_lines.filtered( + lambda x: x.payment_mode_id == payment_mode + ): + line.create_payment_line_from_move_line(payorder) + count += 1 + if new_payorder: + move.message_post( + body=_( + "%(count)d payment lines added to the new draft payment " + "order %(name)s which has been automatically created.", + count=count, + name=payorder.name, + ) + ) + else: + move.message_post( + body=_( + "%(count)d payment lines added to the existing draft " + "payment order %(name)s.", + count=count, + name=payorder.name, + ) + ) + action = self.env["ir.actions.act_window"]._for_xml_id( + "account_payment_order.account_payment_order_%s_action" + % action_payment_type, + ) + if len(result_payorder_ids) == 1: + action.update( + { + "view_mode": "form,tree,pivot,graph", + "res_id": payorder.id, + "views": False, + } + ) + else: + action.update( + { + "view_mode": "tree,form,pivot,graph", + "domain": "[('id', 'in', %s)]" % result_payorder_ids, + "views": False, + } + ) + return action diff --git a/account_payment_order/models/account_move_line.py b/account_payment_order/models/account_move_line.py new file mode 100644 index 000000000..806745d9f --- /dev/null +++ b/account_payment_order/models/account_move_line.py @@ -0,0 +1,102 @@ +# © 2014-2016 Akretion (Alexis de Lattre ) +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models +from odoo.fields import first + + +class AccountMoveLine(models.Model): + _inherit = "account.move.line" + + partner_bank_id = fields.Many2one( + comodel_name="res.partner.bank", + string="Partner Bank Account", + compute="_compute_partner_bank_id", + readonly=False, + store=True, + help="Bank account on which we should pay the supplier", + check_company=True, + ) + bank_payment_line_id = fields.Many2one( + comodel_name="bank.payment.line", + readonly=True, + index=True, + check_company=True, + ) + payment_line_ids = fields.One2many( + comodel_name="account.payment.line", + inverse_name="move_line_id", + string="Payment lines", + check_company=True, + ) + + @api.depends("move_id", "move_id.partner_bank_id", "move_id.payment_mode_id") + def _compute_partner_bank_id(self): + for ml in self: + if ( + ml.move_id.move_type in ("in_invoice", "in_refund") + and not ml.reconciled + and ml.payment_mode_id.payment_order_ok + and ml.account_id.internal_type in ("receivable", "payable") + and not any( + p_state in ("draft", "open", "generated") + for p_state in ml.payment_line_ids.mapped("state") + ) + ): + ml.partner_bank_id = ml.move_id.partner_bank_id.id + else: + ml.partner_bank_id = ml.partner_bank_id + + def _prepare_payment_line_vals(self, payment_order): + self.ensure_one() + assert payment_order, "Missing payment order" + aplo = self.env["account.payment.line"] + # default values for communication_type and communication + communication_type = "normal" + communication = self.ref or self.name + # change these default values if move line is linked to an invoice + if self.move_id.is_invoice(): + if (self.move_id.reference_type or "none") != "none": + communication = self.move_id.ref + ref2comm_type = aplo.invoice_reference_type2communication_type() + communication_type = ref2comm_type[self.move_id.reference_type] + else: + if ( + self.move_id.move_type in ("in_invoice", "in_refund") + and self.move_id.ref + ): + communication = self.move_id.ref + elif "out" in self.move_id.move_type: + # Force to only put invoice number here + communication = self.move_id.name + if self.currency_id: + currency_id = self.currency_id.id + amount_currency = self.amount_residual_currency + else: + currency_id = self.company_id.currency_id.id + amount_currency = self.amount_residual + # TODO : check that self.amount_residual_currency is 0 + # in this case + if payment_order.payment_type == "outbound": + amount_currency *= -1 + partner_bank_id = self.partner_bank_id.id or first(self.partner_id.bank_ids).id + vals = { + "order_id": payment_order.id, + "partner_bank_id": partner_bank_id, + "partner_id": self.partner_id.id, + "move_line_id": self.id, + "communication": communication, + "communication_type": communication_type, + "currency_id": currency_id, + "amount_currency": amount_currency, + "date": False, + # date is set when the user confirms the payment order + } + return vals + + def create_payment_line_from_move_line(self, payment_order): + vals_list = [] + for mline in self: + vals_list.append(mline._prepare_payment_line_vals(payment_order)) + return self.env["account.payment.line"].create(vals_list) diff --git a/account_payment_order/models/account_payment.py b/account_payment_order/models/account_payment.py new file mode 100644 index 000000000..22f71b2d5 --- /dev/null +++ b/account_payment_order/models/account_payment.py @@ -0,0 +1,43 @@ +# Copyright 2019 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class AccountPayment(models.Model): + _inherit = "account.payment" + + def _get_default_journal(self): + res = super()._get_default_journal() + return res.filtered(lambda journal: not journal.inbound_payment_order_only) + + @api.depends("payment_type", "journal_id") + def _compute_payment_method_line_fields(self): + res = super()._compute_payment_method_line_fields() + for pay in self: + pay.available_payment_method_line_ids = ( + pay.journal_id._get_available_payment_method_lines( + pay.payment_type + ).filtered(lambda x: not x.payment_method_id.payment_order_only) + ) + to_exclude = self._get_payment_method_codes_to_exclude() + if to_exclude: + pay.available_payment_method_line_ids = ( + pay.available_payment_method_line_ids.filtered( + lambda x: x.code not in to_exclude + ) + ) + if ( + pay.payment_method_line_id.id + not in pay.available_payment_method_line_ids.ids + ): + # In some cases, we could be linked to a payment method + # line that has been unlinked from the journal. + # In such cases, we want to show it on the payment. + pay.hide_payment_method_line = False + else: + pay.hide_payment_method_line = ( + len(pay.available_payment_method_line_ids) == 1 + and pay.available_payment_method_line_ids.code == "manual" + ) + return res diff --git a/account_payment_order/models/account_payment_line.py b/account_payment_order/models/account_payment_line.py new file mode 100644 index 000000000..4eddb58de --- /dev/null +++ b/account_payment_order/models/account_payment_line.py @@ -0,0 +1,170 @@ +# © 2015-2016 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models +from odoo.exceptions import UserError + + +class AccountPaymentLine(models.Model): + _name = "account.payment.line" + _description = "Payment Lines" + _check_company_auto = True + + name = fields.Char(string="Payment Reference", readonly=True, copy=False) + order_id = fields.Many2one( + comodel_name="account.payment.order", + string="Payment Order", + ondelete="cascade", + index=True, + check_company=True, + ) + company_id = fields.Many2one( + related="order_id.company_id", store=True, readonly=True + ) + company_currency_id = fields.Many2one( + related="order_id.company_currency_id", store=True, readonly=True + ) + payment_type = fields.Selection( + related="order_id.payment_type", store=True, readonly=True + ) + bank_account_required = fields.Boolean( + related="order_id.payment_method_id.bank_account_required", readonly=True + ) + state = fields.Selection( + related="order_id.state", string="State", readonly=True, store=True + ) + move_line_id = fields.Many2one( + comodel_name="account.move.line", + string="Journal Item", + ondelete="restrict", + check_company=True, + ) + ml_maturity_date = fields.Date(related="move_line_id.date_maturity", readonly=True) + currency_id = fields.Many2one( + comodel_name="res.currency", + string="Currency of the Payment Transaction", + required=True, + default=lambda self: self.env.user.company_id.currency_id, + ) + amount_currency = fields.Monetary(string="Amount", currency_field="currency_id") + amount_company_currency = fields.Monetary( + compute="_compute_amount_company_currency", + string="Amount in Company Currency", + currency_field="company_currency_id", + ) + partner_id = fields.Many2one( + comodel_name="res.partner", + string="Partner", + required=True, + domain=[("parent_id", "=", False)], + check_company=True, + ) + partner_bank_id = fields.Many2one( + comodel_name="res.partner.bank", + string="Partner Bank Account", + required=False, + ondelete="restrict", + check_company=True, + ) + date = fields.Date(string="Payment Date") + # communication field is required=False because we don't want to block + # the creation of lines from move/invoices when communication is empty + # This field is required in the form view and there is an error message + # when going from draft to confirm if the field is empty + communication = fields.Char( + required=False, help="Label of the payment that will be seen by the destinee" + ) + communication_type = fields.Selection( + selection=[("normal", "Free")], required=True, default="normal" + ) + bank_line_id = fields.Many2one( + comodel_name="bank.payment.line", + string="Bank Payment Line", + readonly=True, + index=True, + check_company=True, + ) + + _sql_constraints = [ + ( + "name_company_unique", + "unique(name, company_id)", + "A payment line already exists with this reference " "in the same company!", + ) + ] + + @api.model + def create(self, vals): + if vals.get("name", "New") == "New": + vals["name"] = ( + self.env["ir.sequence"].next_by_code("account.payment.line") or "New" + ) + return super(AccountPaymentLine, self).create(vals) + + @api.depends("amount_currency", "currency_id", "company_currency_id", "date") + def _compute_amount_company_currency(self): + for line in self: + if line.currency_id and line.company_currency_id: + line.amount_company_currency = line.currency_id._convert( + line.amount_currency, + line.company_currency_id, + line.company_id, + line.date or fields.Date.today(), + ) + else: + line.amount_company_currency = 0 + + def payment_line_hashcode(self): + self.ensure_one() + bplo = self.env["bank.payment.line"] + values = [] + for field in bplo.same_fields_payment_line_and_bank_payment_line(): + values.append(str(self[field])) + # Don't group the payment lines that are attached to the same supplier + # but to move lines with different accounts (very unlikely), + # for easier generation/comprehension of the transfer move + values.append(str(self.move_line_id.account_id or False)) + # Don't group the payment lines that use a structured communication + # otherwise it would break the structured communication system ! + if self.communication_type != "normal": + values.append(str(self.id)) + hashcode = "-".join(values) + return hashcode + + @api.onchange("partner_id") + def partner_id_change(self): + partner_bank = False + if self.partner_id.bank_ids: + partner_bank = self.partner_id.bank_ids[0] + self.partner_bank_id = partner_bank + + @api.onchange("move_line_id") + def move_line_id_change(self): + if self.move_line_id: + vals = self.move_line_id._prepare_payment_line_vals(self.order_id) + vals.pop("order_id") + for field, value in vals.items(): + self[field] = value + else: + self.partner_id = False + self.partner_bank_id = False + self.amount_currency = 0.0 + self.currency_id = self.env.user.company_id.currency_id + self.communication = False + + def invoice_reference_type2communication_type(self): + """This method is designed to be inherited by + localization modules""" + # key = value of 'reference_type' field on account_invoice + # value = value of 'communication_type' field on account_payment_line + res = {"none": "normal", "structured": "structured"} + return res + + def draft2open_payment_line_check(self): + self.ensure_one() + if self.bank_account_required and not self.partner_bank_id: + raise UserError( + _("Missing Partner Bank Account on payment line %s") % self.name + ) + if not self.communication: + raise UserError(_("Communication is empty on payment line %s.") % self.name) diff --git a/account_payment_order/models/account_payment_method.py b/account_payment_order/models/account_payment_method.py new file mode 100644 index 000000000..2e42b544a --- /dev/null +++ b/account_payment_order/models/account_payment_method.py @@ -0,0 +1,15 @@ +# Copyright 2019 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountPaymentMethod(models.Model): + _inherit = "account.payment.method" + + payment_order_only = fields.Boolean( + string="Only for payment orders", + help="This option helps enforcing the use of payment orders for " + "some payment methods.", + default=False, + ) diff --git a/account_payment_order/models/account_payment_mode.py b/account_payment_order/models/account_payment_mode.py new file mode 100644 index 000000000..cc134930e --- /dev/null +++ b/account_payment_order/models/account_payment_mode.py @@ -0,0 +1,126 @@ +# © 2009 EduSense BV () +# © 2011-2013 Therp BV () +# © 2014-2016 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class AccountPaymentMode(models.Model): + """This corresponds to the object payment.mode of v8 with some + important changes""" + + _inherit = "account.payment.mode" + + payment_order_ok = fields.Boolean( + string="Selectable in Payment Orders", default=True + ) + no_debit_before_maturity = fields.Boolean( + string="Disallow Debit Before Maturity Date", + help="If you activate this option on an Inbound payment mode, " + "you will have an error message when you confirm a debit order " + "that has a payment line with a payment date before the maturity " + "date.", + ) + # Default options for the "payment.order.create" wizard + default_payment_mode = fields.Selection( + selection=[("same", "Same"), ("same_or_null", "Same or empty"), ("any", "Any")], + string="Payment Mode on Invoice", + default="same", + ) + default_journal_ids = fields.Many2many( + comodel_name="account.journal", + string="Journals Filter", + domain="[('company_id', '=', company_id)]", + ) + default_invoice = fields.Boolean( + string="Linked to an Invoice or Refund", default=False + ) + default_target_move = fields.Selection( + selection=[("posted", "All Posted Entries"), ("all", "All Entries")], + string="Target Moves", + default="posted", + ) + default_date_type = fields.Selection( + selection=[("due", "Due"), ("move", "Move")], + default="due", + string="Type of Date Filter", + ) + # default option for account.payment.order + default_date_prefered = fields.Selection( + selection=[ + ("now", "Immediately"), + ("due", "Due Date"), + ("fixed", "Fixed Date"), + ], + string="Default Payment Execution Date", + ) + group_lines = fields.Boolean( + string="Group Transactions in Payment Orders", + default=True, + help="If this mark is checked, the transaction lines of the " + "payment order will be grouped upon confirmation of the payment " + "order.The grouping will be done only if the following " + "fields matches:\n" + "* Partner\n" + "* Currency\n" + "* Destination Bank Account\n" + "* Payment Date\n" + "and if the 'Communication Type' is 'Free'\n" + "(other modules can set additional fields to restrict the " + "grouping.)", + ) + generate_move = fields.Boolean( + string="Generate Accounting Entries On File Upload", default=True + ) + move_option = fields.Selection( + selection=[ + ("date", "One move per payment date"), + ("line", "One move per payment line"), + ], + default="date", + ) + post_move = fields.Boolean(default=True) + + @api.constrains("generate_move", "move_option") + def transfer_move_constrains(self): + for mode in self: + if mode.generate_move and not mode.move_option: + raise ValidationError( + _( + "On the payment mode '%s', you must " + "choose an option for the 'Move Option' parameter." + ) + % mode.name + ) + + @api.onchange("payment_method_id") + def payment_method_id_change(self): + if self.payment_method_id: + ajo = self.env["account.journal"] + aj_ids = [] + if self.payment_method_id.payment_type == "outbound": + aj_ids = ajo.search( + [ + ("type", "in", ("purchase_refund", "purchase")), + ("company_id", "=", self.company_id.id), + ] + ).ids + elif self.payment_method_id.payment_type == "inbound": + aj_ids = ajo.search( + [ + ("type", "in", ("sale_refund", "sale")), + ("company_id", "=", self.company_id.id), + ] + ).ids + self.default_journal_ids = [(6, 0, aj_ids)] + + @api.onchange("generate_move") + def generate_move_change(self): + if self.generate_move: + # default values + self.move_option = "date" + else: + self.move_option = False diff --git a/account_payment_order/models/account_payment_order.py b/account_payment_order/models/account_payment_order.py new file mode 100644 index 000000000..a5661bfab --- /dev/null +++ b/account_payment_order/models/account_payment_order.py @@ -0,0 +1,613 @@ +# © 2009 EduSense BV () +# © 2011-2013 Therp BV () +# © 2016 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2016 Akretion (Alexis de Lattre - alexis.delattre@akretion.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +import base64 + +from odoo import _, api, fields, models +from odoo.exceptions import UserError, ValidationError + + +class AccountPaymentOrder(models.Model): + _name = "account.payment.order" + _description = "Payment Order" + _inherit = ["mail.thread"] + _order = "id desc" + _check_company_auto = True + + name = fields.Char(string="Number", readonly=True, copy=False) + payment_mode_id = fields.Many2one( + comodel_name="account.payment.mode", + required=True, + ondelete="restrict", + tracking=True, + readonly=True, + states={"draft": [("readonly", False)]}, + check_company=True, + ) + payment_type = fields.Selection( + selection=[("inbound", "Inbound"), ("outbound", "Outbound")], + readonly=True, + required=True, + ) + payment_method_id = fields.Many2one( + comodel_name="account.payment.method", + related="payment_mode_id.payment_method_id", + readonly=True, + store=True, + ) + company_id = fields.Many2one( + related="payment_mode_id.company_id", store=True, readonly=True + ) + company_currency_id = fields.Many2one( + related="payment_mode_id.company_id.currency_id", store=True, readonly=True + ) + bank_account_link = fields.Selection( + related="payment_mode_id.bank_account_link", readonly=True + ) + allowed_journal_ids = fields.Many2many( + comodel_name="account.journal", + compute="_compute_allowed_journal_ids", + string="Allowed journals", + ) + journal_id = fields.Many2one( + comodel_name="account.journal", + string="Bank Journal", + ondelete="restrict", + readonly=True, + states={"draft": [("readonly", False)]}, + tracking=True, + check_company=True, + ) + # The journal_id field is only required at confirm step, to + # allow auto-creation of payment order from invoice + company_partner_bank_id = fields.Many2one( + related="journal_id.bank_account_id", + string="Company Bank Account", + readonly=True, + ) + state = fields.Selection( + selection=[ + ("draft", "Draft"), + ("open", "Confirmed"), + ("generated", "File Generated"), + ("uploaded", "File Uploaded"), + ("cancel", "Cancel"), + ], + string="Status", + readonly=True, + copy=False, + default="draft", + tracking=True, + ) + date_prefered = fields.Selection( + selection=[ + ("now", "Immediately"), + ("due", "Due Date"), + ("fixed", "Fixed Date"), + ], + string="Payment Execution Date Type", + required=True, + default="due", + tracking=True, + readonly=True, + states={"draft": [("readonly", False)]}, + ) + date_scheduled = fields.Date( + string="Payment Execution Date", + readonly=True, + states={"draft": [("readonly", False)]}, + tracking=True, + help="Select a requested date of execution if you selected 'Due Date' " + "as the Payment Execution Date Type.", + ) + date_generated = fields.Date(string="File Generation Date", readonly=True) + date_uploaded = fields.Date(string="File Upload Date", readonly=True) + generated_user_id = fields.Many2one( + comodel_name="res.users", + string="Generated by", + readonly=True, + ondelete="restrict", + copy=False, + check_company=True, + ) + payment_line_ids = fields.One2many( + comodel_name="account.payment.line", + inverse_name="order_id", + string="Transactions", + readonly=True, + states={"draft": [("readonly", False)]}, + ) + bank_line_ids = fields.One2many( + comodel_name="bank.payment.line", + inverse_name="order_id", + string="Bank Transactions", + readonly=True, + help="The bank payment lines are used to generate the payment file. " + "They are automatically created from transaction lines upon " + "confirmation of the payment order: one bank payment line can " + "group several transaction lines if the option " + "'Group Transactions in Payment Orders' is active on the payment " + "mode.", + ) + total_company_currency = fields.Monetary( + compute="_compute_total", store=True, currency_field="company_currency_id" + ) + bank_line_count = fields.Integer( + compute="_compute_bank_line_count", string="Number of Bank Transactions" + ) + move_ids = fields.One2many( + comodel_name="account.move", + inverse_name="payment_order_id", + string="Journal Entries", + readonly=True, + ) + move_count = fields.Integer( + compute="_compute_move_count", string="Number of Journal Entries" + ) + description = fields.Char() + + @api.depends("payment_mode_id") + def _compute_allowed_journal_ids(self): + for record in self: + if record.payment_mode_id.bank_account_link == "fixed": + record.allowed_journal_ids = record.payment_mode_id.fixed_journal_id + elif record.payment_mode_id.bank_account_link == "variable": + record.allowed_journal_ids = record.payment_mode_id.variable_journal_ids + else: + record.allowed_journal_ids = False + + def unlink(self): + for order in self: + if order.state == "uploaded": + raise UserError( + _( + "You cannot delete an uploaded payment order. You can " + "cancel it in order to do so." + ) + ) + return super(AccountPaymentOrder, self).unlink() + + @api.constrains("payment_type", "payment_mode_id") + def payment_order_constraints(self): + for order in self: + if ( + order.payment_mode_id.payment_type + and order.payment_mode_id.payment_type != order.payment_type + ): + raise ValidationError( + _( + "The payment type (%(ptype)s) is not the same as the payment " + "type of the payment mode (%(pmode)s)", + ptype=order.payment_type, + pmode=order.payment_mode_id.payment_type, + ) + ) + + @api.constrains("date_scheduled") + def check_date_scheduled(self): + today = fields.Date.context_today(self) + for order in self: + if order.date_scheduled: + if order.date_scheduled < today: + raise ValidationError( + _( + "On payment order %(porder)s, the Payment Execution Date " + "is in the past (%(exedate)s).", + porder=order.name, + exedate=order.date_scheduled, + ) + ) + + @api.depends("payment_line_ids", "payment_line_ids.amount_company_currency") + def _compute_total(self): + for rec in self: + rec.total_company_currency = sum( + rec.mapped("payment_line_ids.amount_company_currency") or [0.0] + ) + + @api.depends("bank_line_ids") + def _compute_bank_line_count(self): + for order in self: + order.bank_line_count = len(order.bank_line_ids) + + @api.depends("move_ids") + def _compute_move_count(self): + rg_res = self.env["account.move"].read_group( + [("payment_order_id", "in", self.ids)], + ["payment_order_id"], + ["payment_order_id"], + ) + mapped_data = { + x["payment_order_id"][0]: x["payment_order_id_count"] for x in rg_res + } + for order in self: + order.move_count = mapped_data.get(order.id, 0) + + @api.model + def create(self, vals): + if vals.get("name", "New") == "New": + vals["name"] = ( + self.env["ir.sequence"].next_by_code("account.payment.order") or "New" + ) + if vals.get("payment_mode_id"): + payment_mode = self.env["account.payment.mode"].browse( + vals["payment_mode_id"] + ) + vals["payment_type"] = payment_mode.payment_type + if payment_mode.bank_account_link == "fixed": + vals["journal_id"] = payment_mode.fixed_journal_id.id + if not vals.get("date_prefered") and payment_mode.default_date_prefered: + vals["date_prefered"] = payment_mode.default_date_prefered + return super(AccountPaymentOrder, self).create(vals) + + @api.onchange("payment_mode_id") + def payment_mode_id_change(self): + if len(self.allowed_journal_ids) == 1: + self.journal_id = self.allowed_journal_ids + if self.payment_mode_id.default_date_prefered: + self.date_prefered = self.payment_mode_id.default_date_prefered + + def action_uploaded_cancel(self): + for move in self.move_ids: + move.button_cancel() + for move_line in move.line_ids: + move_line.remove_move_reconcile() + move.with_context(force_delete=True).unlink() + self.action_cancel() + return True + + def cancel2draft(self): + self.write({"state": "draft"}) + return True + + def action_cancel(self): + for order in self: + order.write({"state": "cancel"}) + order.bank_line_ids.unlink() + return True + + @api.model + def _prepare_bank_payment_line(self, paylines): + return { + "order_id": paylines[0].order_id.id, + "payment_line_ids": [(6, 0, paylines.ids)], + "communication": "-".join([line.communication for line in paylines]), + } + + def draft2open(self): + """ + Called when you click on the 'Confirm' button + Set the 'date' on payment line depending on the 'date_prefered' + setting of the payment.order + Re-generate the bank payment lines + """ + bplo = self.env["bank.payment.line"] + today = fields.Date.context_today(self) + for order in self: + if not order.journal_id: + raise UserError( + _("Missing Bank Journal on payment order %s.") % order.name + ) + if ( + order.payment_method_id.bank_account_required + and not order.journal_id.bank_account_id + ): + raise UserError( + _("Missing bank account on bank journal '%s'.") + % order.journal_id.display_name + ) + if not order.payment_line_ids: + raise UserError( + _("There are no transactions on payment order %s.") % order.name + ) + # Delete existing bank payment lines + order.bank_line_ids.unlink() + # Create the bank payment lines from the payment lines + group_paylines = {} # key = hashcode + for payline in order.payment_line_ids: + payline.draft2open_payment_line_check() + # Compute requested payment date + if order.date_prefered == "due": + requested_date = payline.ml_maturity_date or payline.date or today + elif order.date_prefered == "fixed": + requested_date = order.date_scheduled or today + else: + requested_date = today + # No payment date in the past + if requested_date < today: + requested_date = today + # inbound: check option no_debit_before_maturity + if ( + order.payment_type == "inbound" + and order.payment_mode_id.no_debit_before_maturity + and payline.ml_maturity_date + and requested_date < payline.ml_maturity_date + ): + raise UserError( + _( + "The payment mode '%(pmode)s' has the option " + "'Disallow Debit Before Maturity Date'. The " + "payment line %(pline)s has a maturity date %(mdate)s " + "which is after the computed payment date %(pdate)s.", + pmode=order.payment_mode_id.name, + pline=payline.name, + mdate=payline.ml_maturity_date, + pdate=requested_date, + ) + ) + # Write requested_date on 'date' field of payment line + # norecompute is for avoiding a chained recomputation + # payment_line_ids.date + # > payment_line_ids.amount_company_currency + # > total_company_currency + with self.env.norecompute(): + payline.date = requested_date + # Group options + if order.payment_mode_id.group_lines: + hashcode = payline.payment_line_hashcode() + else: + # Use line ID as hascode, which actually means no grouping + hashcode = payline.id + if hashcode in group_paylines: + group_paylines[hashcode]["paylines"] += payline + group_paylines[hashcode]["total"] += payline.amount_currency + else: + group_paylines[hashcode] = { + "paylines": payline, + "total": payline.amount_currency, + } + order.recompute() + # Create bank payment lines + for paydict in list(group_paylines.values()): + # Block if a bank payment line is <= 0 + if paydict["total"] <= 0: + raise UserError( + _( + "The amount for Partner '%(partner)s' is negative " + "or null (%(amount).2f) !", + partner=paydict["paylines"][0].partner_id.name, + amount=paydict["total"], + ) + ) + vals = self._prepare_bank_payment_line(paydict["paylines"]) + bplo.create(vals) + self.write({"state": "open"}) + return True + + def generate_payment_file(self): + """Returns (payment file as string, filename)""" + self.ensure_one() + if self.payment_method_id.code == "manual": + return (False, False) + else: + raise UserError( + _( + "No handler for this payment method. Maybe you haven't " + "installed the related Odoo module." + ) + ) + + def open2generated(self): + self.ensure_one() + payment_file_str, filename = self.generate_payment_file() + action = {} + if payment_file_str and filename: + attachment = self.env["ir.attachment"].create( + { + "res_model": "account.payment.order", + "res_id": self.id, + "name": filename, + "datas": base64.b64encode(payment_file_str), + } + ) + simplified_form_view = self.env.ref( + "account_payment_order.view_attachment_simplified_form" + ) + action = { + "name": _("Payment File"), + "view_mode": "form", + "view_id": simplified_form_view.id, + "res_model": "ir.attachment", + "type": "ir.actions.act_window", + "target": "current", + "res_id": attachment.id, + } + self.write( + { + "date_generated": fields.Date.context_today(self), + "state": "generated", + "generated_user_id": self._uid, + } + ) + return action + + def generated2uploaded(self): + for order in self: + if order.payment_mode_id.generate_move: + order.generate_move() + self.write( + {"state": "uploaded", "date_uploaded": fields.Date.context_today(self)} + ) + return True + + def _prepare_move(self, bank_lines=None): + if self.payment_type == "outbound": + ref = _("Payment order %s") % self.name + else: + ref = _("Debit order %s") % self.name + if bank_lines and len(bank_lines) == 1: + ref += " - " + bank_lines.name + vals = { + "date": bank_lines[0].date, + "journal_id": self.journal_id.id, + "ref": ref, + "payment_order_id": self.id, + "line_ids": [], + } + total_company_currency = total_payment_currency = 0 + for bline in bank_lines: + total_company_currency += bline.amount_company_currency + total_payment_currency += bline.amount_currency + partner_ml_vals = self._prepare_move_line_partner_account(bline) + vals["line_ids"].append((0, 0, partner_ml_vals)) + trf_ml_vals = self._prepare_move_line_offsetting_account( + total_company_currency, total_payment_currency, bank_lines + ) + vals["line_ids"].append((0, 0, trf_ml_vals)) + return vals + + def _prepare_move_line_offsetting_account( + self, amount_company_currency, amount_payment_currency, bank_lines + ): + vals = {} + payment_method = self.payment_mode_id.payment_method_id + account_id = False + if self.payment_type == "inbound": + account_id = ( + self.journal_id.inbound_payment_method_line_ids.filtered( + lambda x: x.payment_method_id == payment_method + ).payment_account_id.id + or self.journal_id.company_id.account_journal_payment_debit_account_id.id + ) + elif self.payment_type == "outbound": + account_id = ( + self.journal_id.outbound_payment_method_line_ids.filtered( + lambda x: x.payment_method_id == payment_method + ).payment_account_id.id + or self.journal_id.company_id.account_journal_payment_credit_account_id.id + ) + + partner_id = False + for index, bank_line in enumerate(bank_lines): + if index == 0: + partner_id = bank_line.payment_line_ids[0].partner_id.id + elif bank_line.payment_line_ids[0].partner_id.id != partner_id: + # we have different partners in the grouped move + partner_id = False + break + vals.update( + { + "partner_id": partner_id, + "account_id": account_id, + "credit": ( + self.payment_type == "outbound" and amount_company_currency or 0.0 + ), + "debit": ( + self.payment_type == "inbound" and amount_company_currency or 0.0 + ), + } + ) + if bank_lines[0].currency_id != bank_lines[0].company_currency_id: + sign = self.payment_type == "outbound" and -1 or 1 + vals.update( + { + "currency_id": bank_lines[0].currency_id.id, + "amount_currency": amount_payment_currency * sign, + } + ) + return vals + + def _prepare_move_line_partner_account(self, bank_line): + if bank_line.payment_line_ids[0].move_line_id: + account_id = bank_line.payment_line_ids[0].move_line_id.account_id.id + else: + if self.payment_type == "inbound": + account_id = bank_line.partner_id.property_account_receivable_id.id + else: + account_id = bank_line.partner_id.property_account_payable_id.id + if self.payment_type == "outbound": + name = _("Payment bank line %s") % bank_line.name + else: + name = _("Debit bank line %s") % bank_line.name + vals = { + "name": name, + "bank_payment_line_id": bank_line.id, + "partner_id": bank_line.partner_id.id, + "account_id": account_id, + "credit": ( + self.payment_type == "inbound" + and bank_line.amount_company_currency + or 0.0 + ), + "debit": ( + self.payment_type == "outbound" + and bank_line.amount_company_currency + or 0.0 + ), + } + + if bank_line.currency_id != bank_line.company_currency_id: + sign = self.payment_type == "inbound" and -1 or 1 + vals.update( + { + "currency_id": bank_line.currency_id.id, + "amount_currency": bank_line.amount_currency * sign, + } + ) + return vals + + def _create_reconcile_move(self, hashcode, blines): + self.ensure_one() + post_move = self.payment_mode_id.post_move + am_obj = self.env["account.move"] + mvals = self._prepare_move(blines) + move = am_obj.create(mvals) + if post_move: + move.action_post() + blines.reconcile_payment_lines() + + def _prepare_trf_moves(self): + """ + prepare a dict "trfmoves" that can be used when + self.payment_mode_id.move_option = date or line + key = unique identifier (date or True or line.id) + value = bank_pay_lines (recordset that can have several entries) + """ + self.ensure_one() + trfmoves = {} + for bline in self.bank_line_ids: + hashcode = bline.move_line_offsetting_account_hashcode() + if hashcode in trfmoves: + trfmoves[hashcode] += bline + else: + trfmoves[hashcode] = bline + return trfmoves + + def generate_move(self): + """ + Create the moves that pay off the move lines from + the payment/debit order. + """ + self.ensure_one() + trfmoves = self._prepare_trf_moves() + for hashcode, blines in trfmoves.items(): + self._create_reconcile_move(hashcode, blines) + + def action_bank_payment_line(self): + self.ensure_one() + action = self.env.ref("account_payment_order.bank_payment_line_action") + action_dict = action.read()[0] + action_dict["domain"] = [("id", "in", self.bank_line_ids.ids)] + return action_dict + + def action_move_journal_line(self): + self.ensure_one() + action = self.env.ref("account.action_move_journal_line").sudo().read()[0] + if self.move_count == 1: + action.update( + { + "view_mode": "form,tree,kanban", + "views": False, + "view_id": False, + "res_id": self.move_ids[0].id, + } + ) + else: + action["domain"] = [("id", "in", self.move_ids.ids)] + ctx = self.env.context.copy() + ctx.update({"search_default_misc_filter": 0}) + action["context"] = ctx + return action diff --git a/account_payment_order/models/bank_payment_line.py b/account_payment_order/models/bank_payment_line.py new file mode 100644 index 000000000..ed7e04622 --- /dev/null +++ b/account_payment_order/models/bank_payment_line.py @@ -0,0 +1,204 @@ +# Copyright 2015-2016 Akretion - Alexis de Lattre +# Copyright 2018 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models +from odoo.exceptions import UserError + + +class BankPaymentLine(models.Model): + _name = "bank.payment.line" + _description = "Bank Payment Lines" + _check_company_auto = True + + name = fields.Char(string="Bank Payment Line Ref", required=True, readonly=True) + order_id = fields.Many2one( + comodel_name="account.payment.order", + ondelete="cascade", + index=True, + readonly=True, + check_company=True, + ) + payment_type = fields.Selection( + related="order_id.payment_type", readonly=True, store=True + ) + state = fields.Selection(related="order_id.state", readonly=True, store=True) + payment_line_ids = fields.One2many( + comodel_name="account.payment.line", + inverse_name="bank_line_id", + string="Payment Lines", + readonly=True, + ) + partner_id = fields.Many2one( + comodel_name="res.partner", + related="payment_line_ids.partner_id", + readonly=True, + store=True, + check_company=True, + ) # store=True for groupby + # Function Float fields are sometimes badly displayed in tree view, + # see bug report https://github.com/odoo/odoo/issues/8632 + # But is it still true in v9 ? + amount_currency = fields.Monetary( + string="Amount", + currency_field="currency_id", + compute="_compute_amount", + store=True, + readonly=True, + ) + amount_company_currency = fields.Monetary( + string="Amount in Company Currency", + currency_field="company_currency_id", + compute="_compute_amount", + store=True, + readonly=True, + ) + currency_id = fields.Many2one( + comodel_name="res.currency", + required=True, + readonly=True, + related="payment_line_ids.currency_id", + ) + partner_bank_id = fields.Many2one( + comodel_name="res.partner.bank", + string="Bank Account", + readonly=True, + related="payment_line_ids.partner_bank_id", + check_company=True, + ) + date = fields.Date(related="payment_line_ids.date", readonly=True) + communication_type = fields.Selection( + related="payment_line_ids.communication_type", readonly=True + ) + communication = fields.Char(required=True, readonly=True) + company_id = fields.Many2one( + comodel_name="res.company", + related="order_id.payment_mode_id.company_id", + store=True, + readonly=True, + ) + company_currency_id = fields.Many2one( + comodel_name="res.currency", + related="order_id.payment_mode_id.company_id.currency_id", + readonly=True, + store=True, + ) + + @api.model + def same_fields_payment_line_and_bank_payment_line(self): + """ + This list of fields is used both to compute the grouping + hashcode and to copy the values from payment line + to bank payment line + The fields must have the same name on the 2 objects + """ + same_fields = [ + "currency_id", + "partner_id", + "partner_bank_id", + "date", + "communication_type", + ] + return same_fields + + @api.depends("payment_line_ids", "payment_line_ids.amount_currency") + def _compute_amount(self): + for bline in self: + amount_currency = sum(bline.mapped("payment_line_ids.amount_currency")) + amount_company_currency = bline.currency_id._convert( + amount_currency, + bline.company_currency_id, + bline.company_id, + bline.date or fields.Date.today(), + ) + bline.amount_currency = amount_currency + bline.amount_company_currency = amount_company_currency + + @api.model + @api.returns("self") + def create(self, vals): + if vals.get("name", "New") == "New": + vals["name"] = ( + self.env["ir.sequence"].next_by_code("bank.payment.line") or "New" + ) + return super(BankPaymentLine, self).create(vals) + + def move_line_offsetting_account_hashcode(self): + """ + This method is inherited in the module + account_banking_sepa_direct_debit + """ + self.ensure_one() + if self.order_id.payment_mode_id.move_option == "date": + hashcode = fields.Date.to_string(self.date) + else: + hashcode = str(self.id) + return hashcode + + def reconcile_payment_lines(self): + for bline in self: + if all([pline.move_line_id for pline in bline.payment_line_ids]): + bline.reconcile() + else: + bline.no_reconcile_hook() + + def no_reconcile_hook(self): + """This method is designed to be inherited if needed""" + return + + def reconcile(self): + self.ensure_one() + amlo = self.env["account.move.line"] + transit_mlines = amlo.search([("bank_payment_line_id", "=", self.id)]) + assert len(transit_mlines) == 1, "We should have only 1 move" + transit_mline = transit_mlines[0] + assert not transit_mline.reconciled, "Transit move should not be reconciled" + lines_to_rec = transit_mline + for payment_line in self.payment_line_ids: + + if not payment_line.move_line_id: + raise UserError( + _( + "Can not reconcile: no move line for " + "payment line %(line)s of partner '%(partner)s'.", + line=payment_line.name, + partner=payment_line.partner_id.name, + ) + ) + if payment_line.move_line_id.reconciled: + raise UserError( + _( + "Move line '%(line)s' of partner '%(partner)s' has already " + "been reconciled", + line=payment_line.move_line_id.name, + partner=payment_line.partner_id.name, + ) + ) + if payment_line.move_line_id.account_id != transit_mline.account_id: + raise UserError( + _( + "For partner '%(partner)s', the account of the account " + "move line to pay (%(line1)s) is different from the " + "account of of the transit move line (%(line2)s).", + partner=payment_line.move_line_id.partner_id.name, + line1=payment_line.move_line_id.account_id.code, + line2=transit_mline.account_id.code, + ) + ) + + lines_to_rec += payment_line.move_line_id + + lines_to_rec.reconcile() + + def unlink(self): + for line in self: + order_state = line.order_id.state + if order_state == "uploaded": + raise UserError( + _( + "Cannot delete a payment order line whose payment order is" + " in state '%(state)s'. You need to cancel it first.", + state=order_state, + ) + ) + return super(BankPaymentLine, self).unlink() diff --git a/account_payment_order/models/res_bank.py b/account_payment_order/models/res_bank.py new file mode 100644 index 000000000..59a2d4dc1 --- /dev/null +++ b/account_payment_order/models/res_bank.py @@ -0,0 +1,25 @@ +# © 2015-2016 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, models +from odoo.exceptions import ValidationError + + +class ResBank(models.Model): + _inherit = "res.bank" + + @api.constrains("bic") + def check_bic_length(self): + for bank in self: + if bank.bic and len(bank.bic) not in (8, 11): + raise ValidationError( + _( + "A valid BIC contains 8 or 11 characters. The BIC '%(bic)s' " + "contains %(num)d characters, so it is not valid.", + bic=bank.bic, + num=len(bank.bic), + ) + ) + + +# starting from v9, on res.partner.bank bank_bic is a related of bank_id.bic diff --git a/account_payment_order/readme/CONFIGURE.rst b/account_payment_order/readme/CONFIGURE.rst new file mode 100644 index 000000000..e19ef3baf --- /dev/null +++ b/account_payment_order/readme/CONFIGURE.rst @@ -0,0 +1,2 @@ +This module adds several options on Payment Modes, cf Invoicing/Accounting > +Configuration > Management > Payment Modes. diff --git a/account_payment_order/readme/CONTRIBUTORS.rst b/account_payment_order/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..317e603ce --- /dev/null +++ b/account_payment_order/readme/CONTRIBUTORS.rst @@ -0,0 +1,30 @@ +* Stéphane Bidoul +* Alexis de Lattre +* Adrien Peiffer +* Stefan Rijnhart +* Laurent Mignon +* Alexandre Fayolle +* Danimar Ribeiro +* Erwin van der Ploeg +* Raphaël Valyi +* Sandy Carter +* Angel Moya +* Jose María Alzaga +* Meyomesse Gilles +* `DynApps `_: + + * Raf Ven +* Andrea Stirpe +* `Jarsa `_: + + * Alan Ramos +* `Tecnativa `_: + + * Pedro M. Baeza + * Carlos Dauden + * Carlos Roca + +* `Open Source Integrators `_: + + * Ammar Officewala +* Marçal Isern diff --git a/account_payment_order/readme/DESCRIPTION.rst b/account_payment_order/readme/DESCRIPTION.rst new file mode 100644 index 000000000..11a1fe4cd --- /dev/null +++ b/account_payment_order/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds support for payment orders and debit orders. diff --git a/account_payment_order/readme/INSTALL.rst b/account_payment_order/readme/INSTALL.rst new file mode 100644 index 000000000..2ea6c6ae6 --- /dev/null +++ b/account_payment_order/readme/INSTALL.rst @@ -0,0 +1,7 @@ +This module depends on: + +* account_payment_partner +* base_iban +* document + +This modules is part of the OCA/bank-payment suite. diff --git a/account_payment_order/readme/USAGE.rst b/account_payment_order/readme/USAGE.rst new file mode 100644 index 000000000..ec551e4cc --- /dev/null +++ b/account_payment_order/readme/USAGE.rst @@ -0,0 +1,7 @@ +You can create a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the move lines to pay. + +You can create a Debit order via the menu Invoicing/Accounting > Customers > Debit Orders and then select the move lines to debit. + +This module also adds an action *Add to Payment Order* on supplier invoices and *Add to Debit Order* on customer invoices. + +You can print a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the payment oder to print. diff --git a/account_payment_order/report/__init__.py b/account_payment_order/report/__init__.py new file mode 100644 index 000000000..429f03273 --- /dev/null +++ b/account_payment_order/report/__init__.py @@ -0,0 +1 @@ +from . import account_payment_order diff --git a/account_payment_order/report/account_payment_order.py b/account_payment_order/report/account_payment_order.py new file mode 100644 index 000000000..ca8fefc7b --- /dev/null +++ b/account_payment_order/report/account_payment_order.py @@ -0,0 +1,46 @@ +# © 2017 Acsone SA/NV () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, models +from odoo.tools.misc import formatLang + + +class AccountPaymentOrderReport(models.AbstractModel): + _name = "report.account_payment_order.print_account_payment_order_main" + _description = "Technical model for printing payment order" + + @api.model + def _get_report_values(self, docids, data=None): + AccountPaymentOrderObj = self.env["account.payment.order"] + docs = AccountPaymentOrderObj.browse(docids) + + return { + "doc_ids": docids, + "doc_model": "account.payment.order", + "docs": docs, + "data": data, + "env": self.env, + "get_bank_account_name": self.get_bank_account_name, + "formatLang": formatLang, + } + + @api.model + def get_bank_account_name(self, partner_bank): + """ + + :param partner_bank: + :return: + """ + if partner_bank: + name = "" + if partner_bank.bank_name: + name = "%s: " % partner_bank.bank_id.name + if partner_bank.acc_number: + name = "{} {}".format(name, partner_bank.acc_number) + if partner_bank.bank_bic: + name = "%s - " % (name) + if partner_bank.bank_bic: + name = "{} BIC {}".format(name, partner_bank.bank_bic) + return name + else: + return False diff --git a/account_payment_order/report/account_payment_order.xml b/account_payment_order/report/account_payment_order.xml new file mode 100644 index 000000000..56ec2269f --- /dev/null +++ b/account_payment_order/report/account_payment_order.xml @@ -0,0 +1,158 @@ + + + + + + diff --git a/account_payment_order/report/print_account_payment_order.xml b/account_payment_order/report/print_account_payment_order.xml new file mode 100644 index 000000000..f9b737d5d --- /dev/null +++ b/account_payment_order/report/print_account_payment_order.xml @@ -0,0 +1,23 @@ + + + + + + Payment Order + account.payment.order + qweb-pdf + account_payment_order.print_account_payment_order_main + account_payment_order.print_account_payment_order_main + + report + + + diff --git a/account_payment_order/security/ir.model.access.csv b/account_payment_order/security/ir.model.access.csv new file mode 100644 index 000000000..11512c93f --- /dev/null +++ b/account_payment_order/security/ir.model.access.csv @@ -0,0 +1,8 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_payment_order,Full access on account.payment.order to Payment Manager,model_account_payment_order,group_account_payment,1,1,1,1 +access_account_payment_line,Full access on account.payment.line to Payment Manager,model_account_payment_line,group_account_payment,1,1,1,1 +access_bank_payment_line,Full access on bank.payment.line to Payment Manager,model_bank_payment_line,group_account_payment,1,1,1,1 +base.access_res_partner_bank_group_partner_manager,Full access on res.partner.bank to Account Payment group,base.model_res_partner_bank,group_account_payment,1,1,1,1 +base.access_res_bank_group_partner_manager,Full access on res.bank to Account Payment group,base.model_res_bank,group_account_payment,1,1,1,1 +access_account_payment_line_create,access_account_payment_line_create,model_account_payment_line_create,group_account_payment,1,1,1,1 +access_account_invoice_payment_line_multi,access_account_invoice_payment_line_multi,model_account_invoice_payment_line_multi,group_account_payment,1,1,1,1 diff --git a/account_payment_order/security/payment_security.xml b/account_payment_order/security/payment_security.xml new file mode 100644 index 000000000..38a7336eb --- /dev/null +++ b/account_payment_order/security/payment_security.xml @@ -0,0 +1,36 @@ + + + + + Accounting / Payments + + + + + + + Payment order multi-company rule + + ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] + + + Payment line multi-company rule + + ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] + + + Bank payment line multi-company rule + + ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] + + + diff --git a/account_payment_order/static/description/icon.png b/account_payment_order/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/account_payment_order/static/description/icon.png differ diff --git a/account_payment_order/static/description/index.html b/account_payment_order/static/description/index.html new file mode 100644 index 000000000..307507d38 --- /dev/null +++ b/account_payment_order/static/description/index.html @@ -0,0 +1,478 @@ + + + + + + +Account Payment Order + + + +
+

Account Payment Order

+ + +

Beta License: AGPL-3 OCA/bank-payment Translate me on Weblate Try me on Runbot

+

This module adds support for payment orders and debit orders.

+

Table of contents

+ +
+

Installation

+

This module depends on:

+
    +
  • account_payment_partner
  • +
  • base_iban
  • +
  • document
  • +
+

This modules is part of the OCA/bank-payment suite.

+
+
+

Configuration

+

This module adds several options on Payment Modes, cf Invoicing/Accounting > +Configuration > Management > Payment Modes.

+
+
+

Usage

+

You can create a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the move lines to pay.

+

You can create a Debit order via the menu Invoicing/Accounting > Customers > Debit Orders and then select the move lines to debit.

+

This module also adds an action Add to Payment Order on supplier invoices and Add to Debit Order on customer invoices.

+

You can print a Payment order via the menu Invoicing/Accounting > Vendors > Payment Orders and then select the payment oder to print.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ACSONE SA/NV
  • +
  • Therp BV
  • +
  • Tecnativa
  • +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/bank-payment project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_payment_order/tests/__init__.py b/account_payment_order/tests/__init__.py new file mode 100644 index 000000000..c649cb8fe --- /dev/null +++ b/account_payment_order/tests/__init__.py @@ -0,0 +1,5 @@ +from . import test_payment_mode +from . import test_bank +from . import test_payment_order_inbound +from . import test_payment_order_outbound +from . import test_account_payment diff --git a/account_payment_order/tests/test_account_payment.py b/account_payment_order/tests/test_account_payment.py new file mode 100644 index 000000000..e7853ffa4 --- /dev/null +++ b/account_payment_order/tests/test_account_payment.py @@ -0,0 +1,167 @@ +# Copyright 2019 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from unittest.mock import patch + +from odoo.addons.account.models.account_payment_method import AccountPaymentMethod +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +class TestAccountPayment(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + Method_get_payment_method_information = ( + AccountPaymentMethod._get_payment_method_information + ) + + def _get_payment_method_information(self): + res = Method_get_payment_method_information(self) + res["IN"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + res["IN2"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + res["OUT"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + return res + + cls.company = cls.company_data["company"] + cls.env.user.company_ids += cls.company + + # MODELS + cls.account_payment_model = cls.env["account.payment"] + cls.account_journal_model = cls.env["account.journal"] + cls.payment_method_model = cls.env["account.payment.method"] + + # INSTANCES + # Payment methods + with patch.object( + AccountPaymentMethod, + "_get_payment_method_information", + _get_payment_method_information, + ): + + cls.inbound_payment_method_01 = cls.payment_method_model.create( + { + "name": "inbound", + "code": "IN", + "payment_type": "inbound", + } + ) + cls.inbound_payment_method_02 = cls.inbound_payment_method_01.copy( + { + "name": "inbound 2", + "code": "IN2", + "payment_type": "inbound", + } + ) + cls.outbound_payment_method_01 = cls.payment_method_model.create( + { + "name": "outbound", + "code": "OUT", + "payment_type": "outbound", + } + ) + # Journals + cls.manual_in = cls.env.ref("account.account_payment_method_manual_in") + cls.manual_out = cls.env.ref("account.account_payment_method_manual_out") + + cls.bank_journal = cls.company_data["default_journal_bank"] + + def test_account_payment_01(self): + self.assertFalse(self.inbound_payment_method_01.payment_order_only) + self.assertFalse(self.inbound_payment_method_02.payment_order_only) + self.assertFalse(self.bank_journal.inbound_payment_order_only) + self.inbound_payment_method_01.payment_order_only = True + self.assertTrue(self.inbound_payment_method_01.payment_order_only) + self.assertFalse(self.inbound_payment_method_02.payment_order_only) + self.assertFalse(self.bank_journal.inbound_payment_order_only) + self.inbound_payment_method_02.payment_order_only = True + self.assertTrue(self.inbound_payment_method_01.payment_order_only) + self.assertTrue(self.inbound_payment_method_02.payment_order_only) + self.manual_in.payment_order_only = True + self.assertTrue(self.bank_journal.inbound_payment_order_only) + + def test_account_payment_02(self): + self.assertFalse(self.outbound_payment_method_01.payment_order_only) + self.assertFalse(self.bank_journal.outbound_payment_order_only) + self.outbound_payment_method_01.payment_order_only = True + self.assertTrue(self.outbound_payment_method_01.payment_order_only) + + payment_method_id = ( + self.bank_journal.outbound_payment_method_line_ids.payment_method_id + ) + payment_method_id.payment_order_only = True + self.assertTrue(self.bank_journal.outbound_payment_order_only) + + def test_account_payment_03(self): + self.assertFalse(self.inbound_payment_method_01.payment_order_only) + self.assertFalse(self.inbound_payment_method_02.payment_order_only) + self.assertFalse(self.bank_journal.inbound_payment_order_only) + new_account_payment = self.account_payment_model.with_context( + default_company_id=self.company.id + ).new( + { + "journal_id": self.bank_journal.id, + "payment_type": "inbound", + "amount": 1, + "company_id": self.company.id, + } + ) + # check journals + journals = new_account_payment._get_default_journal() + self.assertIn(self.bank_journal, journals) + # check payment methods + payment_methods = ( + new_account_payment.available_payment_method_line_ids.filtered( + lambda x: x.payment_type == "inbound" + ) + .mapped("payment_method_id") + .ids + ) + self.assertIn(self.inbound_payment_method_01.id, payment_methods) + self.assertIn(self.inbound_payment_method_02.id, payment_methods) + # Set one payment method of the bank journal 'payment order only' + self.inbound_payment_method_01.payment_order_only = True + # check journals + journals = new_account_payment._get_default_journal() + self.assertIn(self.bank_journal, journals) + # check payment methods + new_account_payment2 = self.account_payment_model.with_context( + default_company_id=self.company.id + ).new( + { + "journal_id": self.bank_journal.id, + "payment_type": "inbound", + "amount": 1, + "company_id": self.company.id, + } + ) + payment_methods = new_account_payment2.available_payment_method_line_ids.mapped( + "payment_method_id" + ).ids + self.assertNotIn(self.inbound_payment_method_01.id, payment_methods) + self.assertIn(self.inbound_payment_method_02.id, payment_methods) + # Set all payment methods of the bank journal 'payment order only' + self.inbound_payment_method_02.payment_order_only = True + self.assertTrue(self.inbound_payment_method_01.payment_order_only) + self.assertTrue(self.inbound_payment_method_02.payment_order_only) + self.manual_in.payment_order_only = True + self.assertTrue(self.bank_journal.inbound_payment_order_only) + # check journals + journals = new_account_payment._get_default_journal() + self.assertNotIn(self.bank_journal, journals) + # check payment methods + new_account_payment3 = self.account_payment_model.with_context( + default_company_id=self.company.id + ).new( + { + "journal_id": self.bank_journal.id, + "payment_type": "inbound", + "amount": 1, + "company_id": self.company.id, + } + ) + payment_methods = new_account_payment3.available_payment_method_line_ids.mapped( + "payment_method_id" + ).ids + self.assertNotIn(self.inbound_payment_method_01.id, payment_methods) + self.assertNotIn(self.inbound_payment_method_02.id, payment_methods) diff --git a/account_payment_order/tests/test_bank.py b/account_payment_order/tests/test_bank.py new file mode 100644 index 000000000..d5d78bf81 --- /dev/null +++ b/account_payment_order/tests/test_bank.py @@ -0,0 +1,13 @@ +# © 2017 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo.exceptions import ValidationError +from odoo.tests.common import TransactionCase + + +class TestBank(TransactionCase): + def test_bank(self): + bank = self.env["res.bank"].search([], limit=1) + self.assertTrue(bank) + with self.assertRaises(ValidationError): + bank.bic = "TEST" diff --git a/account_payment_order/tests/test_payment_mode.py b/account_payment_order/tests/test_payment_mode.py new file mode 100644 index 000000000..5a101b044 --- /dev/null +++ b/account_payment_order/tests/test_payment_mode.py @@ -0,0 +1,99 @@ +# © 2017 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from unittest.mock import patch + +from odoo.tests.common import TransactionCase + +from odoo.addons.account.models.account_payment_method import AccountPaymentMethod + + +class TestPaymentMode(TransactionCase): + def setUp(self): + super(TestPaymentMode, self).setUp() + + Method_get_payment_method_information = ( + AccountPaymentMethod._get_payment_method_information + ) + + def _get_payment_method_information(self): + res = Method_get_payment_method_information(self) + res["IN"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + res["IN2"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + res["electronic_out"] = {"mode": "multi", "domain": [("type", "=", "bank")]} + return res + + # Company + self.company = self.env.ref("base.main_company") + + self.journal_c1 = self.env["account.journal"].create( + { + "name": "Journal 1", + "code": "J1", + "type": "bank", + "company_id": self.company.id, + } + ) + + self.account = self.env["account.account"].search( + [("reconcile", "=", True), ("company_id", "=", self.company.id)], limit=1 + ) + + self.manual_out = self.env.ref("account.account_payment_method_manual_out") + + self.manual_in = self.env.ref("account.account_payment_method_manual_in") + + with patch.object( + AccountPaymentMethod, + "_get_payment_method_information", + _get_payment_method_information, + ): + + self.electronic_out = self.env["account.payment.method"].create( + { + "name": "Electronic Out", + "code": "electronic_out", + "payment_type": "outbound", + } + ) + + self.payment_mode_c1 = self.env["account.payment.mode"].create( + { + "name": "Direct Debit of suppliers from Bank 1", + "bank_account_link": "variable", + "payment_method_id": self.manual_out.id, + "company_id": self.company.id, + "fixed_journal_id": self.journal_c1.id, + "variable_journal_ids": [(6, 0, [self.journal_c1.id])], + } + ) + + def test_onchange_generate_move(self): + self.payment_mode_c1.generate_move = True + self.payment_mode_c1.generate_move_change() + self.assertEqual(self.payment_mode_c1.move_option, "date") + self.payment_mode_c1.generate_move = False + self.payment_mode_c1.generate_move_change() + self.assertFalse(self.payment_mode_c1.move_option) + + def test_onchange_payment_type(self): + self.payment_mode_c1.payment_method_id = self.manual_in + self.payment_mode_c1.payment_method_id_change() + self.assertTrue( + all( + [ + journal.type in ["sale_refund", "sale"] + for journal in self.payment_mode_c1.default_journal_ids + ] + ) + ) + self.payment_mode_c1.payment_method_id = self.manual_out + self.payment_mode_c1.payment_method_id_change() + self.assertTrue( + all( + [ + journal.type in ["purchase_refund", "purchase"] + for journal in self.payment_mode_c1.default_journal_ids + ] + ) + ) diff --git a/account_payment_order/tests/test_payment_order_inbound.py b/account_payment_order/tests/test_payment_order_inbound.py new file mode 100644 index 000000000..3b1195697 --- /dev/null +++ b/account_payment_order/tests/test_payment_order_inbound.py @@ -0,0 +1,122 @@ +# Copyright 2017 Camptocamp SA +# Copyright 2017 Creu Blanca +# Copyright 2019 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from datetime import date, timedelta + +from odoo.exceptions import UserError, ValidationError +from odoo.tests.common import Form + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +class TestPaymentOrderInboundBase(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + cls.company = cls.company_data["company"] + cls.env.user.company_id = cls.company.id + cls.partner = cls.env["res.partner"].create( + { + "name": "Test Partner", + } + ) + cls.inbound_mode = cls.env["account.payment.mode"].create( + { + "name": "Test Direct Debit of customers", + "bank_account_link": "variable", + "payment_method_id": cls.env.ref( + "account.account_payment_method_manual_in" + ).id, + "company_id": cls.company.id, + } + ) + cls.invoice_line_account = cls.company_data["default_account_revenue"] + cls.journal = cls.company_data["default_journal_bank"] + cls.inbound_mode.variable_journal_ids = cls.journal + # Make sure no others orders are present + cls.domain = [ + ("state", "=", "draft"), + ("payment_type", "=", "inbound"), + ("company_id", "=", cls.env.user.company_id.id), + ] + cls.payment_order_obj = cls.env["account.payment.order"] + cls.payment_order_obj.search(cls.domain).unlink() + # Create payment order + cls.inbound_order = cls.env["account.payment.order"].create( + { + "payment_type": "inbound", + "payment_mode_id": cls.inbound_mode.id, + "journal_id": cls.journal.id, + } + ) + # Open invoice + cls.invoice = cls._create_customer_invoice(cls) + cls.invoice.action_post() + # Add to payment order using the wizard + cls.env["account.invoice.payment.line.multi"].with_context( + active_model="account.move", active_ids=cls.invoice.ids + ).create({}).run() + + def _create_customer_invoice(self): + with Form( + self.env["account.move"].with_context(default_move_type="out_invoice") + ) as invoice_form: + invoice_form.partner_id = self.partner + with invoice_form.invoice_line_ids.new() as invoice_line_form: + invoice_line_form.product_id = self.env.ref("product.product_product_4") + invoice_line_form.name = "product that cost 100" + invoice_line_form.quantity = 1 + invoice_line_form.price_unit = 100.0 + invoice_line_form.account_id = self.invoice_line_account + invoice_line_form.tax_ids.clear() + invoice = invoice_form.save() + invoice_form = Form(invoice) + invoice_form.payment_mode_id = self.inbound_mode + return invoice_form.save() + + +class TestPaymentOrderInbound(TestPaymentOrderInboundBase): + def test_constrains_type(self): + with self.assertRaises(ValidationError): + order = self.env["account.payment.order"].create( + {"payment_mode_id": self.inbound_mode.id, "journal_id": self.journal.id} + ) + order.payment_type = "outbound" + + def test_constrains_date(self): + with self.assertRaises(ValidationError): + self.inbound_order.date_scheduled = date.today() - timedelta(days=1) + + def test_creation(self): + payment_order = self.inbound_order + self.assertEqual(len(payment_order.ids), 1) + + payment_order.write({"journal_id": self.journal.id}) + + self.assertEqual(len(payment_order.payment_line_ids), 1) + self.assertEqual(len(payment_order.bank_line_ids), 0) + + # Open payment order + payment_order.draft2open() + + self.assertEqual(payment_order.bank_line_count, 1) + + # Generate and upload + payment_order.open2generated() + payment_order.generated2uploaded() + + self.assertEqual(payment_order.state, "uploaded") + with self.assertRaises(UserError): + payment_order.unlink() + + bank_line = payment_order.bank_line_ids + + with self.assertRaises(UserError): + bank_line.unlink() + payment_order.action_uploaded_cancel() + self.assertEqual(payment_order.state, "cancel") + payment_order.cancel2draft() + payment_order.unlink() + self.assertEqual(len(self.payment_order_obj.search(self.domain)), 0) diff --git a/account_payment_order/tests/test_payment_order_outbound.py b/account_payment_order/tests/test_payment_order_outbound.py new file mode 100644 index 000000000..7ab83c26d --- /dev/null +++ b/account_payment_order/tests/test_payment_order_outbound.py @@ -0,0 +1,290 @@ +# © 2017 Camptocamp SA +# © 2017 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from datetime import date, datetime, timedelta + +from odoo import fields +from odoo.exceptions import UserError, ValidationError + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +class TestPaymentOrderOutbound(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + cls.company = cls.company_data["company"] + cls.env.user.company_id = cls.company.id + cls.partner = cls.env["res.partner"].create( + { + "name": "Test Partner", + } + ) + cls.invoice_line_account = cls.env["account.account"].create( + { + "name": "Test account", + "code": "TEST1", + "user_type_id": cls.env.ref("account.data_account_type_expenses").id, + } + ) + cls.mode = cls.env["account.payment.mode"].create( + { + "name": "Test Credit Transfer to Suppliers", + "company_id": cls.company.id, + "bank_account_link": "variable", + "payment_method_id": cls.env.ref( + "account.account_payment_method_manual_out" + ).id, + } + ) + cls.creation_mode = cls.env["account.payment.mode"].create( + { + "name": "Test Direct Debit of suppliers from Société Générale", + "company_id": cls.company.id, + "bank_account_link": "variable", + "payment_method_id": cls.env.ref( + "account.account_payment_method_manual_out" + ).id, + } + ) + cls.invoice = cls._create_supplier_invoice(cls, "F1242") + cls.invoice_02 = cls._create_supplier_invoice(cls, "F1243") + cls.bank_journal = cls.company_data["default_journal_bank"] + # Make sure no other payment orders are in the DB + cls.domain = [ + ("state", "=", "draft"), + ("payment_type", "=", "outbound"), + ("company_id", "=", cls.env.user.company_id.id), + ] + cls.env["account.payment.order"].search(cls.domain).unlink() + + def _create_supplier_invoice(self, ref): + invoice = self.env["account.move"].create( + { + "partner_id": self.partner.id, + "move_type": "in_invoice", + "ref": ref, + "payment_mode_id": self.mode.id, + "invoice_date": fields.Date.today(), + "invoice_line_ids": [ + ( + 0, + None, + { + "product_id": self.env.ref("product.product_product_4").id, + "quantity": 1.0, + "price_unit": 100.0, + "name": "product that cost 100", + "account_id": self.invoice_line_account.id, + }, + ) + ], + } + ) + + return invoice + + def test_creation_due_date(self): + self.mode.variable_journal_ids = self.bank_journal + self.mode.group_lines = False + self.order_creation("due") + + def test_creation_no_date(self): + self.mode.group_lines = True + self.creation_mode.write( + { + "group_lines": False, + "bank_account_link": "fixed", + "default_date_prefered": "due", + "fixed_journal_id": self.bank_journal.id, + } + ) + self.mode.variable_journal_ids = self.bank_journal + self.order_creation(False) + + def test_creation_fixed_date(self): + self.mode.write( + { + "bank_account_link": "fixed", + "default_date_prefered": "fixed", + "fixed_journal_id": self.bank_journal.id, + } + ) + + self.invoice_02.action_post() + self.order_creation("fixed") + + def order_creation(self, date_prefered): + # Open invoice + self.invoice.action_post() + order_vals = { + "payment_type": "outbound", + "payment_mode_id": self.creation_mode.id, + } + if date_prefered: + order_vals["date_prefered"] = date_prefered + order = self.env["account.payment.order"].create(order_vals) + with self.assertRaises(UserError): + order.draft2open() + + order.payment_mode_id = self.mode.id + order.payment_mode_id_change() + self.assertEqual(order.journal_id.id, self.bank_journal.id) + + self.assertEqual(len(order.payment_line_ids), 0) + if date_prefered: + self.assertEqual(order.date_prefered, date_prefered) + with self.assertRaises(UserError): + order.draft2open() + line_create = ( + self.env["account.payment.line.create"] + .with_context(active_model="account.payment.order", active_id=order.id) + .create({"date_type": "move", "move_date": datetime.now()}) + ) + line_create.payment_mode = "any" + line_create.move_line_filters_change() + line_create.populate() + line_create.create_payment_lines() + line_created_due = ( + self.env["account.payment.line.create"] + .with_context(active_model="account.payment.order", active_id=order.id) + .create({"date_type": "due", "due_date": datetime.now()}) + ) + line_created_due.populate() + line_created_due.create_payment_lines() + self.assertGreater(len(order.payment_line_ids), 0) + order.draft2open() + order.open2generated() + order.generated2uploaded() + self.assertEqual(order.move_ids[0].date, order.bank_line_ids[0].date) + self.assertEqual(order.state, "uploaded") + + def test_cancel_payment_order(self): + # Open invoice + self.invoice.action_post() + # Add to payment order using the wizard + self.env["account.invoice.payment.line.multi"].with_context( + active_model="account.move", active_ids=self.invoice.ids + ).create({}).run() + + payment_order = self.env["account.payment.order"].search(self.domain) + self.assertEqual(len(payment_order), 1) + + payment_order.write({"journal_id": self.bank_journal.id}) + + self.assertEqual(len(payment_order.payment_line_ids), 1) + self.assertEqual(len(payment_order.bank_line_ids), 0) + + # Open payment order + payment_order.draft2open() + + self.assertEqual(payment_order.bank_line_count, 1) + + # Generate and upload + payment_order.open2generated() + payment_order.generated2uploaded() + + self.assertEqual(payment_order.state, "uploaded") + with self.assertRaises(UserError): + payment_order.unlink() + + bank_line = payment_order.bank_line_ids + + with self.assertRaises(UserError): + bank_line.unlink() + payment_order.action_uploaded_cancel() + self.assertEqual(payment_order.state, "cancel") + payment_order.cancel2draft() + payment_order.unlink() + self.assertEqual(len(self.env["account.payment.order"].search(self.domain)), 0) + + def test_constrains(self): + outbound_order = self.env["account.payment.order"].create( + { + "payment_type": "outbound", + "payment_mode_id": self.mode.id, + "journal_id": self.bank_journal.id, + } + ) + with self.assertRaises(ValidationError): + outbound_order.date_scheduled = date.today() - timedelta(days=1) + + +def test_manual_line_and_manual_date(self): + # Create payment order + outbound_order = self.env["account.payment.order"].create( + { + "date_prefered": "due", + "payment_type": "outbound", + "payment_mode_id": self.mode.id, + "journal_id": self.journal.id, + "description": "order with manual line", + } + ) + self.assertEqual(len(outbound_order.payment_line_ids), 0) + # Create a manual payment order line with custom date + vals = { + "order_id": outbound_order.id, + "partner_id": self.env.ref("base.res_partner_4").id, + "partner_bank_id": self.env.ref("base.res_partner_4").bank_ids[0].id, + "communication": "manual line and manual date", + "currency_id": outbound_order.payment_mode_id.company_id.currency_id.id, + "amount_currency": 192.38, + "date": date.today() + timedelta(days=8), + } + self.env["account.payment.line"].create(vals) + + self.assertEqual(len(outbound_order.payment_line_ids), 1) + self.assertEqual( + outbound_order.payment_line_ids[0].date, date.today() + timedelta(days=8) + ) + + # Create a manual payment order line with normal date + vals = { + "order_id": outbound_order.id, + "partner_id": self.env.ref("base.res_partner_4").id, + "partner_bank_id": self.env.ref("base.res_partner_4").bank_ids[0].id, + "communication": "manual line", + "currency_id": outbound_order.payment_mode_id.company_id.currency_id.id, + "amount_currency": 200.38, + } + self.env["account.payment.line"].create(vals) + + self.assertEqual(len(outbound_order.payment_line_ids), 2) + self.assertEqual(outbound_order.payment_line_ids[1].date, False) + + # Open payment order + self.assertEqual(len(outbound_order.bank_line_ids), 0) + outbound_order.draft2open() + self.assertEqual(outbound_order.bank_line_count, 2) + self.assertEqual( + outbound_order.payment_line_ids[0].date, + outbound_order.payment_line_ids[0].bank_line_id.date, + ) + self.assertEqual(outbound_order.payment_line_ids[1].date, date.today()) + self.assertEqual(outbound_order.payment_line_ids[1].bank_line_id.date, date.today()) + # Generate and upload + outbound_order.open2generated() + outbound_order.generated2uploaded() + + self.assertEqual(outbound_order.state, "uploaded") + with self.assertRaises(UserError): + outbound_order.unlink() + + bank_line = outbound_order.bank_line_ids + + with self.assertRaises(UserError): + bank_line.unlink() + outbound_order.action_done_cancel() + self.assertEqual(outbound_order.state, "cancel") + outbound_order.cancel2draft() + outbound_order.unlink() + self.assertEqual( + len( + self.env["account.payment.order"].search( + [("description", "=", "order with manual line")] + ) + ), + 0, + ) diff --git a/account_payment_order/views/account_invoice_view.xml b/account_payment_order/views/account_invoice_view.xml new file mode 100644 index 000000000..3ca3703b8 --- /dev/null +++ b/account_payment_order/views/account_invoice_view.xml @@ -0,0 +1,82 @@ + + + + + account_payment_order.view_move_form + account.move + + + + + + + + + + + + + Add to Payment/Debit Order + account.invoice.payment.line.multi + form + new + + + + + account_payment_order.view_invoice_tree + account.move + + + + + + diff --git a/account_payment_order/views/account_move_line.xml b/account_payment_order/views/account_move_line.xml new file mode 100644 index 000000000..b6d9cd1f2 --- /dev/null +++ b/account_payment_order/views/account_move_line.xml @@ -0,0 +1,39 @@ + + + + + account_payment_order.move_line_form + account.move.line + + + + + + + + + + account_payment_order.add.move_line_tree + account.move.line + + primary + 99 + + + + + + + + + + + + diff --git a/account_payment_order/views/account_payment_line.xml b/account_payment_order/views/account_payment_line.xml new file mode 100644 index 000000000..b0040a484 --- /dev/null +++ b/account_payment_order/views/account_payment_line.xml @@ -0,0 +1,83 @@ + + + + account.payment.line.form + account.payment.line + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + account.payment.line.tree + account.payment.line + + + + + + + + + + + + + + + + + + + Payment Lines + account.payment.line + tree,form + {'account_payment_line_main_view': True} + +
diff --git a/account_payment_order/views/account_payment_method.xml b/account_payment_order/views/account_payment_method.xml new file mode 100644 index 000000000..766636aa2 --- /dev/null +++ b/account_payment_order/views/account_payment_method.xml @@ -0,0 +1,20 @@ + + + + + account.payment.method.form (in account_payment_order) + account.payment.method + + + + + + + + diff --git a/account_payment_order/views/account_payment_mode.xml b/account_payment_order/views/account_payment_mode.xml new file mode 100644 index 000000000..303d96704 --- /dev/null +++ b/account_payment_order/views/account_payment_mode.xml @@ -0,0 +1,80 @@ + + + + account_payment_order.account.payment.mode.form + account.payment.mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + account_payment_order.account.payment.mode.tree + account.payment.mode + + + + + + + + + account_payment_order.account.payment.mode.search + account.payment.mode + + + + + + + + diff --git a/account_payment_order/views/account_payment_order.xml b/account_payment_order/views/account_payment_order.xml new file mode 100644 index 000000000..c542e9aab --- /dev/null +++ b/account_payment_order/views/account_payment_order.xml @@ -0,0 +1,277 @@ + + + + account.payment.order.form + account.payment.order + +
+
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+ + account.payment.order.tree + account.payment.order + + + + + + + + + + + + + + + + + account.payment.order.search + account.payment.order + + + + + + + + + + + + + + + + + + + + account.payment.order.graph + account.payment.order + + + + + + + + + account.payment.order.pivot + account.payment.order + + + + + + + + + Payment Orders + account.payment.order + tree,form,pivot,graph + [('payment_type', '=', 'outbound')] + {'default_payment_type': 'outbound'} + + + Debit Orders + account.payment.order + tree,form,pivot,graph + [('payment_type', '=', 'inbound')] + {'default_payment_type': 'inbound'} + + + +
diff --git a/account_payment_order/views/bank_payment_line.xml b/account_payment_order/views/bank_payment_line.xml new file mode 100644 index 000000000..624742fc9 --- /dev/null +++ b/account_payment_order/views/bank_payment_line.xml @@ -0,0 +1,106 @@ + + + + + bank.payment.line.form + bank.payment.line + +
+ + + + + + + + + + + + + + + +
+
+
+ + bank.payment.line.tree + bank.payment.line + + + + + + + + + + + + + + + + bank.payment.line.search + bank.payment.line + + + + + + + + + + + + + + Bank Payment Lines + bank.payment.line + tree,form + {'bank_payment_line_main_view': True} + + +
diff --git a/account_payment_order/views/ir_attachment.xml b/account_payment_order/views/ir_attachment.xml new file mode 100644 index 000000000..d5e2806a5 --- /dev/null +++ b/account_payment_order/views/ir_attachment.xml @@ -0,0 +1,28 @@ + + + + + ir.attachment.simplified.form + ir.attachment + + +
+ + +
+
+
+
diff --git a/account_payment_order/wizard/__init__.py b/account_payment_order/wizard/__init__.py new file mode 100644 index 000000000..ea5171b32 --- /dev/null +++ b/account_payment_order/wizard/__init__.py @@ -0,0 +1,2 @@ +from . import account_payment_line_create +from . import account_invoice_payment_line_multi diff --git a/account_payment_order/wizard/account_invoice_payment_line_multi.py b/account_payment_order/wizard/account_invoice_payment_line_multi.py new file mode 100644 index 000000000..0283dfac6 --- /dev/null +++ b/account_payment_order/wizard/account_invoice_payment_line_multi.py @@ -0,0 +1,18 @@ +# © 2016 Akretion () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import models + + +class AccountInvoicePaymentLineMulti(models.TransientModel): + _name = "account.invoice.payment.line.multi" + _description = "Create payment lines from invoice tree view" + + def run(self): + self.ensure_one() + assert ( + self._context["active_model"] == "account.move" + ), "Active model should be account.move" + invoices = self.env["account.move"].browse(self._context["active_ids"]) + action = invoices.create_account_payment_line() + return action diff --git a/account_payment_order/wizard/account_invoice_payment_line_multi_view.xml b/account_payment_order/wizard/account_invoice_payment_line_multi_view.xml new file mode 100644 index 000000000..1943d2d7e --- /dev/null +++ b/account_payment_order/wizard/account_invoice_payment_line_multi_view.xml @@ -0,0 +1,31 @@ + + + + + account_invoice_payment_line_multi.form + account.invoice.payment.line.multi + +
+

This wizard will create payment lines for the selected invoices:

+
    +
  • if there are existing draft payment orders for the payment modes of the invoices, the payment lines will be added to those payment orders
  • +
  • otherwise, new payment orders will be created (one per payment mode).
  • +
+
+
+
+
+
+
diff --git a/account_payment_order/wizard/account_payment_line_create.py b/account_payment_order/wizard/account_payment_line_create.py new file mode 100644 index 000000000..4feb8eeb1 --- /dev/null +++ b/account_payment_order/wizard/account_payment_line_create.py @@ -0,0 +1,177 @@ +# © 2009 EduSense BV () +# © 2011-2013 Therp BV () +# © 2014-2015 ACSONE SA/NV () +# © 2015-2016 Akretion () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models + + +class AccountPaymentLineCreate(models.TransientModel): + _name = "account.payment.line.create" + _description = "Wizard to create payment lines" + + order_id = fields.Many2one( + comodel_name="account.payment.order", string="Payment Order" + ) + journal_ids = fields.Many2many( + comodel_name="account.journal", string="Journals Filter" + ) + partner_ids = fields.Many2many( + comodel_name="res.partner", + string="Partners", + domain=[("parent_id", "=", False)], + ) + target_move = fields.Selection( + selection=[("posted", "All Posted Entries"), ("all", "All Entries")], + string="Target Moves", + ) + allow_blocked = fields.Boolean(string="Allow Litigation Move Lines") + invoice = fields.Boolean(string="Linked to an Invoice or Refund") + date_type = fields.Selection( + selection=[("due", "Due Date"), ("move", "Move Date")], + string="Type of Date Filter", + required=True, + ) + due_date = fields.Date() + move_date = fields.Date(default=fields.Date.context_today) + payment_mode = fields.Selection( + selection=[("same", "Same"), ("same_or_null", "Same or Empty"), ("any", "Any")], + ) + move_line_ids = fields.Many2many( + comodel_name="account.move.line", string="Move Lines" + ) + + @api.model + def default_get(self, field_list): + res = super(AccountPaymentLineCreate, self).default_get(field_list) + context = self.env.context + assert ( + context.get("active_model") == "account.payment.order" + ), "active_model should be payment.order" + assert context.get("active_id"), "Missing active_id in context !" + order = self.env["account.payment.order"].browse(context["active_id"]) + mode = order.payment_mode_id + res.update( + { + "journal_ids": mode.default_journal_ids.ids or False, + "target_move": mode.default_target_move, + "invoice": mode.default_invoice, + "date_type": mode.default_date_type, + "payment_mode": mode.default_payment_mode, + "order_id": order.id, + } + ) + return res + + def _prepare_move_line_domain(self): + self.ensure_one() + domain = [ + ("reconciled", "=", False), + ("company_id", "=", self.order_id.company_id.id), + ] + if self.journal_ids: + domain += [("journal_id", "in", self.journal_ids.ids)] + if self.partner_ids: + domain += [("partner_id", "in", self.partner_ids.ids)] + if self.target_move == "posted": + domain += [("move_id.state", "=", "posted")] + if not self.allow_blocked: + domain += [("blocked", "!=", True)] + if self.date_type == "due": + domain += [ + "|", + ("date_maturity", "<=", self.due_date), + ("date_maturity", "=", False), + ] + elif self.date_type == "move": + domain.append(("date", "<=", self.move_date)) + if self.invoice: + domain.append( + ( + "move_id.move_type", + "in", + ("in_invoice", "out_invoice", "in_refund", "out_refund"), + ) + ) + if self.payment_mode: + if self.payment_mode == "same": + domain.append( + ("payment_mode_id", "=", self.order_id.payment_mode_id.id) + ) + elif self.payment_mode == "same_or_null": + domain += [ + "|", + ("payment_mode_id", "=", False), + ("payment_mode_id", "=", self.order_id.payment_mode_id.id), + ] + + if self.order_id.payment_type == "outbound": + # For payables, propose all unreconciled credit lines, + # including partially reconciled ones. + # If they are partially reconciled with a supplier refund, + # the residual will be added to the payment order. + # + # For receivables, propose all unreconciled credit lines. + # (ie customer refunds): they can be refunded with a payment. + # Do not propose partially reconciled credit lines, + # as they are deducted from a customer invoice, and + # will not be refunded with a payment. + domain += [ + ("credit", ">", 0), + ("account_id.internal_type", "in", ["payable", "receivable"]), + ] + elif self.order_id.payment_type == "inbound": + domain += [ + ("debit", ">", 0), + ("account_id.internal_type", "in", ["receivable", "payable"]), + ] + # Exclude lines that are already in a non-cancelled + # and non-uploaded payment order; lines that are in a + # uploaded payment order are proposed if they are not reconciled, + paylines = self.env["account.payment.line"].search( + [ + ("state", "in", ("draft", "open", "generated")), + ("move_line_id", "!=", False), + ] + ) + if paylines: + move_lines_ids = [payline.move_line_id.id for payline in paylines] + domain += [("id", "not in", move_lines_ids)] + return domain + + def populate(self): + domain = self._prepare_move_line_domain() + lines = self.env["account.move.line"].search(domain) + self.move_line_ids = lines + action = { + "name": _("Select Move Lines to Create Transactions"), + "type": "ir.actions.act_window", + "res_model": "account.payment.line.create", + "view_mode": "form", + "target": "new", + "res_id": self.id, + "context": self._context, + } + return action + + @api.onchange( + "date_type", + "move_date", + "due_date", + "journal_ids", + "invoice", + "target_move", + "allow_blocked", + "payment_mode", + "partner_ids", + ) + def move_line_filters_change(self): + domain = self._prepare_move_line_domain() + res = {"domain": {"move_line_ids": domain}} + return res + + def create_payment_lines(self): + if self.move_line_ids: + self.move_line_ids.create_payment_line_from_move_line(self.order_id) + return True diff --git a/account_payment_order/wizard/account_payment_line_create_view.xml b/account_payment_order/wizard/account_payment_line_create_view.xml new file mode 100644 index 000000000..69a9bb59c --- /dev/null +++ b/account_payment_order/wizard/account_payment_line_create_view.xml @@ -0,0 +1,88 @@ + + + + + account_payment_line_create.form + account.payment.line.create + +
+ + + + + + + + + + + +