From 1704b30c8079059c301ceb0eccdb1e2053ce9f90 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 8 Oct 2014 03:34:21 +0200 Subject: [PATCH 001/118] [ADD] account_banking_mandate, spliting functionality in two modules --- account_banking_mandate/__init__.py | 22 ++ account_banking_mandate/__openerp__.py | 59 +++ .../data/mandate_reference_sequence.xml | 20 + .../i18n/account_banking_mandate.pot | 355 +++++++++++++++++ account_banking_mandate/i18n/es.po | 360 ++++++++++++++++++ account_banking_mandate/models/__init__.py | 26 ++ .../models/account_banking_mandate.py | 154 ++++++++ .../models/account_invoice.py | 33 ++ .../models/payment_line.py | 76 ++++ .../models/res_partner_bank.py | 34 ++ .../security/ir.model.access.csv | 3 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../test/banking_mandate.yml | 36 ++ .../views/account_banking_mandate_view.xml | 122 ++++++ .../views/account_invoice_view.xml | 22 ++ .../views/account_payment_view.xml | 26 ++ .../views/res_partner_bank_view.xml | 48 +++ 17 files changed, 1396 insertions(+) create mode 100644 account_banking_mandate/__init__.py create mode 100644 account_banking_mandate/__openerp__.py create mode 100644 account_banking_mandate/data/mandate_reference_sequence.xml create mode 100644 account_banking_mandate/i18n/account_banking_mandate.pot create mode 100644 account_banking_mandate/i18n/es.po create mode 100644 account_banking_mandate/models/__init__.py create mode 100644 account_banking_mandate/models/account_banking_mandate.py create mode 100644 account_banking_mandate/models/account_invoice.py create mode 100644 account_banking_mandate/models/payment_line.py create mode 100644 account_banking_mandate/models/res_partner_bank.py create mode 100644 account_banking_mandate/security/ir.model.access.csv create mode 100644 account_banking_mandate/static/description/icon.png create mode 100644 account_banking_mandate/test/banking_mandate.yml create mode 100644 account_banking_mandate/views/account_banking_mandate_view.xml create mode 100644 account_banking_mandate/views/account_invoice_view.xml create mode 100644 account_banking_mandate/views/account_payment_view.xml create mode 100644 account_banking_mandate/views/res_partner_bank_view.xml diff --git a/account_banking_mandate/__init__.py b/account_banking_mandate/__init__.py new file mode 100644 index 00000000000..2af74b3d233 --- /dev/null +++ b/account_banking_mandate/__init__.py @@ -0,0 +1,22 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import models diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py new file mode 100644 index 00000000000..b682c7518b7 --- /dev/null +++ b/account_banking_mandate/__openerp__.py @@ -0,0 +1,59 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': 'Account Banking Mandate', + 'summary': 'Banking mandates', + 'version': '8.0.0.1.0', + 'license': 'AGPL-3', + 'author': "Compassion CH, " + "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "Akretion, " + "Odoo Community Association (OCA)", + 'website': 'https://github.com/OCA/bank-payment', + 'category': 'Banking addons', + 'depends': [ + 'account_payment', + ], + 'data': [ + 'views/account_banking_mandate_view.xml', + 'views/account_invoice_view.xml', + 'views/account_payment_view.xml', + 'views/res_partner_bank_view.xml', + 'data/mandate_reference_sequence.xml', + 'security/ir.model.access.csv', + ], + 'demo': [], + 'test': ['test/banking_mandate.yml'], + 'description': ''' + This module adds a generic model for banking mandates. + These mandates can be specialized to fit any banking mandates (such as + sepa or lsv). + + A banking mandate is attached to a bank account and represents an + authorization that the bank account owner gives to a company for a + specific operation (such as direct debit). + You can setup mandates from the accounting menu or directly from a bank + account. + ''', + 'installable': True, +} diff --git a/account_banking_mandate/data/mandate_reference_sequence.xml b/account_banking_mandate/data/mandate_reference_sequence.xml new file mode 100644 index 00000000000..9a51db944d6 --- /dev/null +++ b/account_banking_mandate/data/mandate_reference_sequence.xml @@ -0,0 +1,20 @@ + + + + + + + DD Mandate Reference + account.banking.mandate + + + + DD Mandate Reference + account.banking.mandate + BM + + + + + + diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot new file mode 100644 index 00000000000..6be1594d55b --- /dev/null +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -0,0 +1,355 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-31 23:00+0000\n" +"PO-Revision-Date: 2014-10-31 23:00+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "

\n" +" Click to create a new Banking Mandate.\n" +"

\n" +" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" +"

\n" +" " +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company !" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,partner_bank_id:0 +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_cancel +msgid "Banking Mandate Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_valid +msgid "Banking Mandate Validated" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_expired +msgid "Banking Mandate has Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: help:res.partner.bank,mandate_ids:0 +msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 +#, python-format +msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form +msgid "DD Mandate" +msgstr "" + +#. module: account_banking_mandate +#: view:res.partner:account_banking_mandate.mandate_partner_form +#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_tree +msgid "DD Mandates" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,signature_date:0 +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,last_debit_date:0 +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: field:account.invoice,mandate_id:0 +#: field:payment.line,mandate_id:0 +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_form +#: field:res.partner.bank,mandate_ids:0 +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_summary:0 +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,id:0 +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel +msgid "Mandate Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_expired +msgid "Mandate Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_valid +msgid "Mandate Validated" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 +#, python-format +msgid "Mandate should be in cancel state" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#, python-format +msgid "Mandate should be in draft or valid state" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:131 +#, python-format +msgid "Mandate should be in draft state" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,state:0 +msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_payment_line +msgid "Payment Line" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: field:account.banking.mandate,payment_line_ids:0 +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "SEPA Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,scan:0 +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,state:0 +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:92 +#, python-format +msgid "The date of signature of mandate '%s' is in the future !" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The mandate '%s' can't have a date of last debit before the date of signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/payment_line.py:68 +#, python-format +msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,unique_mandate_reference:0 +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" +msgstr "" + diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po new file mode 100644 index 00000000000..567f167bd9a --- /dev/null +++ b/account_banking_mandate/i18n/es.po @@ -0,0 +1,360 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-31 23:00+0000\n" +"PO-Revision-Date: 2014-10-31 23:00+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "

\n" +" Click to create a new Banking Mandate.\n" +"

\n" +" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" +"

\n" +" " +msgstr "

\n" +" Pulse para crear un nuevo mandato bancario.\n" +"

\n" +" Un mandato bancario es un documento firmado por su cliente que le da autorización a hacer una o varias operaciones en su cuenta bancaria.\n" +"

\n" +" " + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company !" +msgstr "Ya existe un mandato con la misma referencia para esta compañía" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "Un mandato bancario genérico" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Volver a borrador" + +#. module: account_banking_mandate +#: field:account.banking.mandate,partner_bank_id:0 +msgid "Bank Account" +msgstr "Cuenta bancaria" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Cuentas bancarias" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "Mandato bancario" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_cancel +msgid "Banking Mandate Cancelled" +msgstr "Mandato bancario cancelado" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_valid +msgid "Banking Mandate Validated" +msgstr "Mandato bancario validado" + +#. module: account_banking_mandate +#: model:mail.message.subtype,description:account_banking_mandate.mandate_expired +msgid "Banking Mandate has Expired" +msgstr "El mandato bancario ha expirado" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +msgid "Banking Mandates" +msgstr "Mandatos bancarios" + +#. module: account_banking_mandate +#: help:res.partner.bank,mandate_ids:0 +msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" +msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a la compañía para un operación específica" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Cancelado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 +#, python-format +msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." +msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "No se puede validar el mandato '%s' sin una fecha de firma." + +#. module: account_banking_mandate +#: field:account.banking.mandate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: account_banking_mandate +#: field:account.banking.mandate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_banking_mandate +#: field:account.banking.mandate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_banking_mandate +#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form +msgid "DD Mandate" +msgstr "Mandato bancario" + +#. module: account_banking_mandate +#: view:res.partner:account_banking_mandate.mandate_partner_form +#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_tree +msgid "DD Mandates" +msgstr "Mandatos bancarios" + +#. module: account_banking_mandate +#: field:account.banking.mandate,signature_date:0 +msgid "Date of Signature of the Mandate" +msgstr "Fecha de la firma del mandato" + +#. module: account_banking_mandate +#: field:account.banking.mandate,last_debit_date:0 +msgid "Date of the Last Debit" +msgstr "Fecha del último cobro" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: account_banking_mandate +#: field:account.invoice,mandate_id:0 +#: field:payment.line,mandate_id:0 +msgid "Direct Debit Mandate" +msgstr "Mandato de adeudo directo" + +#. module: account_banking_mandate +#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_form +#: field:res.partner.bank,mandate_ids:0 +msgid "Direct Debit Mandates" +msgstr "Mandatos de adeudo directo" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Borrador" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "Expirado" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_summary:0 +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está directamente en formato html para ser insertado en vistas kanban." + +#. module: account_banking_mandate +#: field:account.banking.mandate,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del último mensaje" + +#. module: account_banking_mandate +#: field:account.banking.mandate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_banking_mandate +#: field:account.banking.mandate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel +msgid "Mandate Cancelled" +msgstr "Mandato cancelado" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_expired +msgid "Mandate Expired" +msgstr "Mandato expirado" + +#. module: account_banking_mandate +#: model:mail.message.subtype,name:account_banking_mandate.mandate_valid +msgid "Mandate Validated" +msgstr "Mandato validado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 +#, python-format +msgid "Mandate should be in cancel state" +msgstr "El mandato debe estar en estado cancelado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#, python-format +msgid "Mandate should be in draft or valid state" +msgstr "El mandato debe estar en estado borrador o validado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:131 +#, python-format +msgid "Mandate should be in draft state" +msgstr "El mandato debe estar en estado borrador" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: account_banking_mandate +#: help:account.banking.mandate,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: account_banking_mandate +#: help:account.banking.mandate,state:0 +msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." +msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." + +#. module: account_banking_mandate +#: field:account.banking.mandate,partner_id:0 +msgid "Partner" +msgstr "Empresa" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_payment_line +msgid "Payment Line" +msgstr "Línea de pago" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "Referencia" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: field:account.banking.mandate,payment_line_ids:0 +msgid "Related Payment Lines" +msgstr "Líneas de pago relacionadas" + +#. module: account_banking_mandate +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "SEPA Direct Debit Mandates" +msgstr "Mandatos de adeudo directo SEPA" + +#. module: account_banking_mandate +#: field:account.banking.mandate,scan:0 +msgid "Scan of the Mandate" +msgstr "Escaneado del mandato" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "Buscar mandatos bancarios" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "Fecha de firma" + +#. module: account_banking_mandate +#: field:account.banking.mandate,state:0 +msgid "Status" +msgstr "Estado" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:92 +#, python-format +msgid "The date of signature of mandate '%s' is in the future !" +msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The mandate '%s' can't have a date of last debit before the date of signature." +msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/payment_line.py:68 +#, python-format +msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria '%s')." + +#. module: account_banking_mandate +#: field:account.banking.mandate,unique_mandate_reference:0 +msgid "Unique Mandate Reference" +msgstr "Referencia única del mandato" + +#. module: account_banking_mandate +#: field:account.banking.mandate,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes sin leer" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "Válido" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Validar" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" +msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" + diff --git a/account_banking_mandate/models/__init__.py b/account_banking_mandate/models/__init__.py new file mode 100644 index 00000000000..52a6f46166b --- /dev/null +++ b/account_banking_mandate/models/__init__.py @@ -0,0 +1,26 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import account_banking_mandate +from . import account_invoice +from . import res_partner_bank +from . import payment_line diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py new file mode 100644 index 00000000000..1e6564a6bef --- /dev/null +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -0,0 +1,154 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields, exceptions, api, _ + + +class AccountBankingMandate(models.Model): + ''' The banking mandate is attached to a bank account and represents an + authorization that the bank account owner gives to a company for a + specific operation (such as direct debit) + ''' + _name = 'account.banking.mandate' + _description = "A generic banking mandate" + _rec_name = 'unique_mandate_reference' + _inherit = ['mail.thread'] + _order = 'signature_date desc' + _track = { + 'state': { + 'account_banking_mandate.mandate_valid': ( + lambda self, cr, uid, obj, ctx=None: obj['state'] == 'valid'), + 'account_banking_mandate.mandate_expired': ( + lambda self, cr, uid, obj, ctx=None: + obj['state'] == 'expired'), + 'account_banking_mandate.mandate_cancel': ( + lambda self, cr, uid, obj, ctx=None: obj['state'] == 'cancel'), + }, + } + + def _get_states(self): + return [('draft', 'Draft'), + ('valid', 'Valid'), + ('expired', 'Expired'), + ('cancel', 'Cancelled')] + + partner_bank_id = fields.Many2one( + comodel_name='res.partner.bank', string='Bank Account', + track_visibility='onchange') + partner_id = fields.Many2one( + comodel_name='res.partner', related='partner_bank_id.partner_id', + string='Partner', store=True) + company_id = fields.Many2one( + comodel_name='res.company', string='Company', required=True, + default=lambda self: self.env['res.company']._company_default_get( + 'account.banking.mandate')) + unique_mandate_reference = fields.Char( + string='Unique Mandate Reference', track_visibility='always', + default='/') + signature_date = fields.Date(string='Date of Signature of the Mandate', + track_visibility='onchange') + scan = fields.Binary(string='Scan of the Mandate') + last_debit_date = fields.Date(string='Date of the Last Debit', + readonly=True) + state = fields.Selection( + _get_states, string='Status', default='draft', + help="Only valid mandates can be used in a payment line. A cancelled " + "mandate is a mandate that has been cancelled by the customer.") + payment_line_ids = fields.One2many( + comodel_name='payment.line', inverse_name='mandate_id', + string="Related Payment Lines") + + _sql_constraints = [( + 'mandate_ref_company_uniq', + 'unique(unique_mandate_reference, company_id)', + 'A Mandate with the same reference already exists for this company !')] + + @api.one + @api.constrains('signature_date', 'last_debit_date') + def _check_dates(self): + if (self.signature_date and + self.signature_date > fields.Date.context_today(self)): + raise exceptions.Warning( + _("The date of signature of mandate '%s' is in the future !") + % self.unique_mandate_reference) + if (self.signature_date and self.last_debit_date and + self.signature_date > self.last_debit_date): + raise exceptions.Warning( + _("The mandate '%s' can't have a date of last debit before " + "the date of signature.") % self.unique_mandate_reference) + + @api.one + @api.constrains('state', 'partner_bank_id') + def _check_valid_state(self): + if self.state == 'valid': + if not self.signature_date: + raise exceptions.Warning( + _("Cannot validate the mandate '%s' without a date of " + "signature.") % self.unique_mandate_reference) + if not self.partner_bank_id: + raise exceptions.Warning( + _("Cannot validate the mandate '%s' because it is not " + "attached to a bank account.") % + self.unique_mandate_reference) + + @api.model + def create(self, vals=None): + if vals.get('unique_mandate_reference', '/') == '/': + vals['unique_mandate_reference'] = \ + self.env['ir.sequence'].next_by_code('account.banking.mandate') + return super(AccountBankingMandate, self).create(vals) + + @api.one + @api.onchange('partner_bank_id') + def mandate_partner_bank_change(self): + self.partner_id = self.partner_bank_id.partner_id + + @api.multi + def validate(self): + for mandate in self: + if mandate.state != 'draft': + raise exceptions.Warning( + _('Mandate should be in draft state')) + self.write({'state': 'valid'}) + return True + + @api.multi + def cancel(self): + for mandate in self: + if mandate.state not in ('draft', 'valid'): + raise exceptions.Warning( + _('Mandate should be in draft or valid state')) + self.write({'state': 'cancel'}) + return True + + @api.multi + def back2draft(self): + """Allows to set the mandate back to the draft state. + This is for mandates cancelled by mistake. + """ + for mandate in self: + if mandate.state != 'cancel': + raise exceptions.Warning( + _('Mandate should be in cancel state')) + self.write({'state': 'draft'}) + return True diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py new file mode 100644 index 00000000000..e040c426fbc --- /dev/null +++ b/account_banking_mandate/models/account_invoice.py @@ -0,0 +1,33 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields + + +class AccountInvoice(models.Model): + _inherit = 'account.invoice' + + mandate_id = fields.Many2one( + 'account.banking.mandate', string='Direct Debit Mandate', + domain=[('state', '=', 'valid')], readonly=True, + states={'draft': [('readonly', False)]}) diff --git a/account_banking_mandate/models/payment_line.py b/account_banking_mandate/models/payment_line.py new file mode 100644 index 00000000000..6d02d1a895c --- /dev/null +++ b/account_banking_mandate/models/payment_line.py @@ -0,0 +1,76 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields, api, exceptions, _ + + +class PaymentLine(models.Model): + _inherit = 'payment.line' + + mandate_id = fields.Many2one( + comodel_name='account.banking.mandate', string='Direct Debit Mandate', + domain=[('state', '=', 'valid')]) + + @api.multi + def create(self, vals=None): + """If the customer invoice has a mandate, take it + otherwise, take the first valid mandate of the bank account + """ + if vals is None: + vals = {} + partner_bank_id = vals.get('bank_id') + move_line_id = vals.get('move_line_id') + if (self.env.context.get('search_payment_order_type') == 'debit' + and 'mandate_id' not in vals): + if move_line_id: + line = self.env['account.move.line'].browse(move_line_id) + if (line.invoice and line.invoice.type == 'out_invoice' + and line.invoice.mandate_id): + vals.update({ + 'mandate_id': line.invoice.mandate_id.id, + 'bank_id': line.invoice.mandate_id.partner_bank_id.id, + }) + if partner_bank_id and 'mandate_id' not in vals: + mandates = self.env['account.banking.mandate'].search( + [('partner_bank_id', '=', partner_bank_id), + ('state', '=', 'valid')]) + if mandates: + vals['mandate_id'] = mandates[0].id + return super(PaymentLine, self).create(vals) + + @api.one + @api.constrains('mandate_id', 'bank_id') + def _check_mandate_bank_link(self): + if (self.mandate_id and self.bank_id + and self.mandate_id.partner_bank_id.id != + self.bank_id.id): + raise exceptions.Warning( + _("The payment line with reference '%s' has the bank account " + "'%s' which is not attached to the mandate '%s' (this " + "mandate is attached to the bank account '%s').") % + (self.name, + self.env['res.partner.bank'].name_get( + [self.bank_id.id])[0][1], + self.mandate_id.unique_mandate_reference, + self.env['res.partner.bank'].name_get( + [self.mandate_id.partner_bank_id.id])[0][1])) diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py new file mode 100644 index 00000000000..d3d40e48106 --- /dev/null +++ b/account_banking_mandate/models/res_partner_bank.py @@ -0,0 +1,34 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for openERP +# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) +# @author: Cyril Sester , +# Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields + + +class ResPartnerBank(models.Model): + _inherit = 'res.partner.bank' + + mandate_ids = fields.One2many( + comodel_name='account.banking.mandate', inverse_name='partner_bank_id', + string='Direct Debit Mandates', + help='Banking mandates represents an authorization that the bank ' + 'account owner gives to a company for a specific operation') diff --git a/account_banking_mandate/security/ir.model.access.csv b/account_banking_mandate/security/ir.model.access.csv new file mode 100644 index 00000000000..07f07a3daba --- /dev/null +++ b/account_banking_mandate/security/ir.model.access.csv @@ -0,0 +1,3 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +"access_account_banking_mandate","Full access on account.banking.mandate","model_account_banking_mandate","account_payment.group_account_payment",1,1,1,1 +"access_account_banking_mandate_read","Read access on account.banking.mandate","model_account_banking_mandate","base.group_user",1,0,0,0 \ No newline at end of file diff --git a/account_banking_mandate/static/description/icon.png b/account_banking_mandate/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/account_banking_mandate/test/banking_mandate.yml b/account_banking_mandate/test/banking_mandate.yml new file mode 100644 index 00000000000..b1f33f51c3e --- /dev/null +++ b/account_banking_mandate/test/banking_mandate.yml @@ -0,0 +1,36 @@ +- + In order to test mandate, I create a partner with a bank account. + Then, I create a mandate, validate it, cancel it and the set it back to draft + + I create a partner +- + !record {model: res.partner, id: mandate_partner, view: False}: + name: "Mandate test" +- + I create a partner bank account +- + !record {model: res.partner.bank, id: mandate_partner_bank, view: False}: + state: 'bank' + acc_number: '1234' + partner_id: mandate_partner +- + I create a mandate on 1st January +- + !record {model: account.banking.mandate, id: test_mandate, view: False}: + partner_bank_id: mandate_partner_bank + signature_date: "2014-01-01" + +- + I check that the state field is automatically set by default +- + !assert {model: account.banking.mandate, id: test_mandate}: + - state == 'draft' +- + I go through all states by clicking on buttons and check that cancel state is reached +- + !python {model: account.banking.mandate}: | + self.validate(cr, uid, [ref('test_mandate')]) + self.cancel(cr, uid, [ref('test_mandate')]) + mandate = self.browse(cr, uid, ref('test_mandate')) + assert mandate.state == 'cancel', 'Mandate is not in cancel state' + self.back2draft(cr, uid, [ref('test_mandate')]) diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml new file mode 100644 index 00000000000..c1d1ed52c51 --- /dev/null +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -0,0 +1,122 @@ + + + + + + view.mandate.form + account.banking.mandate + +
+
+
+ +
+

+ +

+
+ + + + + + + + + + + +
+
+ + +
+
+
+
+ + + view.mandate.tree + account.banking.mandate + + + + + + + + + + + + + + view.mandate.search + account.banking.mandate + + + + + + + + + + + + + Banking Mandates + account.banking.mandate + form + tree,form + +

+ Click to create a new Banking Mandate. +

+ A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account. +

+
+
+ + + + + + Mandate Validated + account.banking.mandate + + Banking Mandate Validated + + + + Mandate Expired + account.banking.mandate + + Banking Mandate has Expired + + + + Mandate Cancelled + account.banking.mandate + + Banking Mandate Cancelled + +
+
diff --git a/account_banking_mandate/views/account_invoice_view.xml b/account_banking_mandate/views/account_invoice_view.xml new file mode 100644 index 00000000000..a21e83857f1 --- /dev/null +++ b/account_banking_mandate/views/account_invoice_view.xml @@ -0,0 +1,22 @@ + + + + + + + add.mandate.on.customer.invoice.form + account.invoice + + + + + + + + + + diff --git a/account_banking_mandate/views/account_payment_view.xml b/account_banking_mandate/views/account_payment_view.xml new file mode 100644 index 00000000000..39ec869532d --- /dev/null +++ b/account_banking_mandate/views/account_payment_view.xml @@ -0,0 +1,26 @@ + + + + + + + mandate.payment.order.form + payment.order + + + + + + + + + + + + + + diff --git a/account_banking_mandate/views/res_partner_bank_view.xml b/account_banking_mandate/views/res_partner_bank_view.xml new file mode 100644 index 00000000000..572fa766e65 --- /dev/null +++ b/account_banking_mandate/views/res_partner_bank_view.xml @@ -0,0 +1,48 @@ + + + + + + + mandate.res.partner.bank.form + res.partner.bank + + + + + + + + + + + + mandate.res.partner.bank.tree + res.partner.bank + + + + + + + + + + + mandate.partner.form + res.partner + + + + + + + + + + From 66d561aa88d23e835db987c2fc82b893910e9fbb Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Wed, 14 Jan 2015 18:08:17 +0100 Subject: [PATCH 002/118] [FIX+IMP] account_banking_mandate: Several things * Bug #96 bad use of new API * [Usability] mandates: search by reference, add group_by, add seq type in tree view * Add scheme in mandate tree+search view * Replace tabs by spaces in mandate views * account_banking_mandate/views/account_banking_mandate_view.xml: convert from dos to unix format * Add multi-company rule on account.banking.mandate --- account_banking_mandate/__openerp__.py | 1 + .../models/payment_line.py | 14 +- .../security/mandate_security.xml | 19 ++ .../views/account_banking_mandate_view.xml | 217 +++++++++--------- 4 files changed, 139 insertions(+), 112 deletions(-) create mode 100644 account_banking_mandate/security/mandate_security.xml diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index b682c7518b7..ff310a76fba 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -40,6 +40,7 @@ 'views/account_payment_view.xml', 'views/res_partner_bank_view.xml', 'data/mandate_reference_sequence.xml', + 'security/mandate_security.xml', 'security/ir.model.access.csv', ], 'demo': [], diff --git a/account_banking_mandate/models/payment_line.py b/account_banking_mandate/models/payment_line.py index 6d02d1a895c..9a176cf6107 100644 --- a/account_banking_mandate/models/payment_line.py +++ b/account_banking_mandate/models/payment_line.py @@ -31,7 +31,7 @@ class PaymentLine(models.Model): comodel_name='account.banking.mandate', string='Direct Debit Mandate', domain=[('state', '=', 'valid')]) - @api.multi + @api.model def create(self, vals=None): """If the customer invoice has a mandate, take it otherwise, take the first valid mandate of the bank account @@ -40,12 +40,12 @@ def create(self, vals=None): vals = {} partner_bank_id = vals.get('bank_id') move_line_id = vals.get('move_line_id') - if (self.env.context.get('search_payment_order_type') == 'debit' - and 'mandate_id' not in vals): + if (self.env.context.get('search_payment_order_type') == 'debit' and + 'mandate_id' not in vals): if move_line_id: line = self.env['account.move.line'].browse(move_line_id) - if (line.invoice and line.invoice.type == 'out_invoice' - and line.invoice.mandate_id): + if (line.invoice and line.invoice.type == 'out_invoice' and + line.invoice.mandate_id): vals.update({ 'mandate_id': line.invoice.mandate_id.id, 'bank_id': line.invoice.mandate_id.partner_bank_id.id, @@ -61,8 +61,8 @@ def create(self, vals=None): @api.one @api.constrains('mandate_id', 'bank_id') def _check_mandate_bank_link(self): - if (self.mandate_id and self.bank_id - and self.mandate_id.partner_bank_id.id != + if (self.mandate_id and self.bank_id and + self.mandate_id.partner_bank_id.id != self.bank_id.id): raise exceptions.Warning( _("The payment line with reference '%s' has the bank account " diff --git a/account_banking_mandate/security/mandate_security.xml b/account_banking_mandate/security/mandate_security.xml new file mode 100644 index 00000000000..889413a84b1 --- /dev/null +++ b/account_banking_mandate/security/mandate_security.xml @@ -0,0 +1,19 @@ + + + + + + + + + Banking Mandate multi-company + + ['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])] + + + + diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index c1d1ed52c51..172eadbb3a9 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -6,117 +6,124 @@ --> - - view.mandate.form - account.banking.mandate - -
-
-
- -
-

- -

-
- - - - - - - - - - - -
-
- - -
-
-
-
- - view.mandate.tree - account.banking.mandate - - - - - - - - - - - - - view.mandate.search - account.banking.mandate - - - - - - - - - - + + view.mandate.form + account.banking.mandate + +
+
+
+ +
+

+ +

+
+ + + + + + + + + + + +
+
+ + +
+
+
+
- - Banking Mandates - account.banking.mandate - form - tree,form - -

- Click to create a new Banking Mandate. -

- A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account. -

-
-
+ + view.mandate.tree + account.banking.mandate + + + + + + + + + + + - + + view.mandate.search + account.banking.mandate + + + + + + + + + + + + + + - - - Mandate Validated - account.banking.mandate - - Banking Mandate Validated - + + Banking Mandates + account.banking.mandate + tree,form + +

+ Click to create a new Banking Mandate. +

+ A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account. +

+
+
+ + + + + + Mandate Validated + account.banking.mandate + + Banking Mandate Validated + + + + Mandate Expired + account.banking.mandate + + Banking Mandate has Expired + + + + Mandate Cancelled + account.banking.mandate + + Banking Mandate Cancelled + - - Mandate Expired - account.banking.mandate - - Banking Mandate has Expired - - - Mandate Cancelled - account.banking.mandate - - Banking Mandate Cancelled -
From 5ac4a194494f5612f665ee55d29593b05c4d2eba Mon Sep 17 00:00:00 2001 From: Philippe Schmidt Date: Mon, 1 Jun 2015 17:10:58 +0200 Subject: [PATCH 003/118] Add requested descriptions in an OCA README.rst file --- account_banking_mandate/README.rst | 73 ++++++++++++++++++++++++++ account_banking_mandate/__openerp__.py | 11 ---- 2 files changed, 73 insertions(+), 11 deletions(-) create mode 100644 account_banking_mandate/README.rst diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst new file mode 100644 index 00000000000..5cf37dd616a --- /dev/null +++ b/account_banking_mandate/README.rst @@ -0,0 +1,73 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Account Banking Mandate +======================= + +This module adds a generic model for banking mandates. +These mandates can be specialized to fit any banking mandates (such as sepa or lsv). + +A banking mandate is attached to a bank account and represents an +authorization that the bank account owner gives to a company for a +specific operation (such as direct debit). +You can setup mandates from the accounting menu or directly from a bank +account. + +Installation +============ + +This module depends on : +* account_payment + +This module is part of the OCA/bank-payment suite. + +Configuration +============= + +TODO + +Usage +===== + +To use this module, see menu "Accounting > payment > SEPA direct debit mandates" + +For further information, please visit: + + * https://www.odoo.com/forum/help-1 + +Known issues / Roadmap +====================== + + * no known issues + +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 +`here `_. + +Credits +======= + +Contributors +------------ + +* Alexis de Lattre +* Pedro M. Baeza +* Alexandre Fayolle +* Stéphane Bidoul + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index ff310a76fba..7436ae93080 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -45,16 +45,5 @@ ], 'demo': [], 'test': ['test/banking_mandate.yml'], - 'description': ''' - This module adds a generic model for banking mandates. - These mandates can be specialized to fit any banking mandates (such as - sepa or lsv). - - A banking mandate is attached to a bank account and represents an - authorization that the bank account owner gives to a company for a - specific operation (such as direct debit). - You can setup mandates from the accounting menu or directly from a bank - account. - ''', 'installable': True, } From eb300f9037f3ad327ea501dc446e915d8db54d96 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Sat, 6 Jun 2015 00:20:41 +0200 Subject: [PATCH 004/118] Port SEPA modules to new API Fix an important regression in account_banking_sepa_direct_debit: "Date of Last Debit" was not set any more Proper write of date_done with account_banking_payment_export is installed without account_banking_payment_transfer Add post-install script for date_sent on payment.order --- .../views/account_banking_mandate_view.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 172eadbb3a9..d4c016e027c 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -32,8 +32,11 @@ - + invisible="context.get('mandate_bank_partner_view')" + domain="[('partner_id', '=', partner_id)]" /> + From bde6ced40c97301bd19bf8486f5eb4a1c3827018 Mon Sep 17 00:00:00 2001 From: sergio-incaser Date: Thu, 18 Jun 2015 12:23:05 +0200 Subject: [PATCH 005/118] [IMP] account_banking_mandate: Add report SEPA mandate. --- account_banking_mandate/README.rst | 1 + account_banking_mandate/__openerp__.py | 3 + .../data/report_paperformat.xml | 22 ++ .../i18n/account_banking_mandate.pot | 254 ++++++++++++-- account_banking_mandate/i18n/es.po | 330 ++++++++++++++++-- .../reports/account_banking_mandate.xml | 20 ++ .../reports/account_banking_mandate_view.xml | 146 ++++++++ 7 files changed, 722 insertions(+), 54 deletions(-) create mode 100644 account_banking_mandate/data/report_paperformat.xml create mode 100644 account_banking_mandate/reports/account_banking_mandate.xml create mode 100644 account_banking_mandate/reports/account_banking_mandate_view.xml diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 5cf37dd616a..48d7f74f79f 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -58,6 +58,7 @@ Contributors * Pedro M. Baeza * Alexandre Fayolle * Stéphane Bidoul +* Sergio Teruel (Incaser) Maintainer ---------- diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index 7436ae93080..0309a15d24b 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -40,8 +40,11 @@ 'views/account_payment_view.xml', 'views/res_partner_bank_view.xml', 'data/mandate_reference_sequence.xml', + 'data/report_paperformat.xml', 'security/mandate_security.xml', 'security/ir.model.access.csv', + 'reports/account_banking_mandate_view.xml', + 'reports/account_banking_mandate.xml', ], 'demo': [], 'test': ['test/banking_mandate.yml'], diff --git a/account_banking_mandate/data/report_paperformat.xml b/account_banking_mandate/data/report_paperformat.xml new file mode 100644 index 00000000000..631dc93f7cd --- /dev/null +++ b/account_banking_mandate/data/report_paperformat.xml @@ -0,0 +1,22 @@ + + + + + + European A4 low margin for SEPA + + A4 + 0 + 0 + Portrait + 10 + 10 + 5 + 5 + + 0 + 80 + + + + diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot index 6be1594d55b..912fcd667bf 100644 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -1,28 +1,31 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_banking_mandate +# * account_banking_mandate # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-31 23:00+0000\n" -"PO-Revision-Date: 2014-10-31 23:00+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2015-06-18 08:15+0000\n" +"PO-Revision-Date: 2015-06-18 10:18+0100\n" +"Last-Translator: Sergio Teruel \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" +"X-Generator: Poedit 1.5.4\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action -msgid "

\n" -" Click to create a new Banking Mandate.\n" -"

\n" -" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" -"

\n" -" " +msgid "" +"

\n" +" Click to create a new Banking Mandate.\n" +"

\n" +" A Banking Mandate is a document signed by your customer that gives " +"you the autorization to do one or several operations on his bank account.\n" +"

\n" +" " msgstr "" #. module: account_banking_mandate @@ -35,6 +38,20 @@ msgstr "" msgid "A generic banking mandate" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"As part of your rights, you are entitled to a refund from your bank under " +"the terms and conditions of your agreement with your bank.\n" +" A refund must be claimed within 8 weeks starting " +"from the date on which your account was debited." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "BIC:" +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form msgid "Back to Draft" @@ -50,6 +67,11 @@ msgstr "" msgid "Bank Accounts" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Bank name:" +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree @@ -78,7 +100,14 @@ msgstr "" #. module: account_banking_mandate #: help:res.partner.bank,mandate_ids:0 -msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" +msgid "" +"Banking mandates represents an authorization that the bank account owner " +"gives to a company for a specific operation" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "By signing this mandate form, you authorise (A)" msgstr "" #. module: account_banking_mandate @@ -94,7 +123,9 @@ msgstr "" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 #, python-format -msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." msgstr "" #. module: account_banking_mandate @@ -145,8 +176,24 @@ msgid "Date of the last message posted on the record." msgstr "" #. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 -#: field:payment.line,mandate_id:0 +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Debtor identification code:" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Description of contract." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Details regarding the underlying relationship between the Creditor and the " +"Debtor - for information purposes only." +msgstr "" + +#. module: account_banking_mandate +#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 msgid "Direct Debit Mandate" msgstr "" @@ -171,9 +218,28 @@ msgstr "" msgid "Followers" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"For business users: write any code number here which you wish to have quoted " +"by your bank." +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + #. module: account_banking_mandate #: help:account.banking.mandate,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "IBAN:" msgstr "" #. module: account_banking_mandate @@ -181,11 +247,36 @@ msgstr "" msgid "ID" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification code of the Creditor Reference Party." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification code of the Debtor Reference Party." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification number of the underlying contract." +msgstr "" + #. module: account_banking_mandate #: help:account.banking.mandate,message_unread:0 msgid "If checked new messages require your attention." msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "If you are paying on your own behalf, leave blank." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "In respect of the contract:" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" @@ -211,6 +302,17 @@ msgstr "" msgid "Last Updated on" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Location and sign: _______________________, at ______ from ____________ from" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate +msgid "Mandate" +msgstr "" + #. module: account_banking_mandate #: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel msgid "Mandate Cancelled" @@ -254,9 +356,25 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Name of the Creditor Reference Party: Creditor must complete this section if " +"collecting payment on behalf of another party." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Name of the Debtor Reference Party: If you are making a payment in respect " +"of an arrangement between" +msgstr "" + #. module: account_banking_mandate #: help:account.banking.mandate,state:0 -msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." msgstr "" #. module: account_banking_mandate @@ -264,22 +382,62 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Party on whose behalf the creditor collects the payment:" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_payment_line msgid "Payment Line" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Payment type:" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Person on whose behalf payment is made:" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Policyholder Service / Debtor:" +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree msgid "Reference" msgstr "" +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Reference:" +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: field:account.banking.mandate,payment_line_ids:0 msgid "Related Payment Lines" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "SEPA DIRECT DEBIT MANDATE" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.menu,name:account_banking_mandate.mandate_menu msgid "SEPA Direct Debit Mandates" @@ -296,6 +454,12 @@ msgid "Search Banking Mandates" msgstr "" #. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Service Provider / Creditor:" +msgstr "" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree msgid "Signature Date" msgstr "" @@ -319,13 +483,28 @@ msgstr "" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 #, python-format -msgid "The mandate '%s' can't have a date of last debit before the date of signature." +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." msgstr "" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/payment_line.py:68 #, python-format -msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgid "" +"The payment line with reference '%s' has the bank account '%s' which is not " +"attached to the mandate '%s' (this mandate is attached to the bank account " +"'%s')." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"This mandate is only intended for business-to-business transactions. You are " +"not entitled to a refund from your bank after your account has been debited, " +"but you are entitled to request your bank not to debit your account up until " +"the day on which the payment is due.\n" +" Please complete all the fields marked *." msgstr "" #. module: account_banking_mandate @@ -338,6 +517,11 @@ msgstr "" msgid "Unread Messages" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "VAT:" +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search msgid "Valid" @@ -348,8 +532,38 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: field:account.banking.mandate,website_message_ids:0 +msgid "Website Messages" +msgstr "" + +#. module: account_banking_mandate +#: help:account.banking.mandate,website_message_ids:0 +msgid "Website communication history" +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Write any code number here which you wish to have quoted by your bank." +msgstr "" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" msgstr "" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"and another person (e.g. where you are paying the other person's bill) " +"please write the other person's name here." +msgstr "" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"to send instructions to your bank to debit your account and (B) your bank to " +"debit your account in accordance with the instructions from" +msgstr "" diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index 567f167bd9a..329ee055d7e 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -1,34 +1,40 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_banking_mandate +# * account_banking_mandate # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-31 23:00+0000\n" -"PO-Revision-Date: 2014-10-31 23:00+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2015-06-18 08:15+0000\n" +"PO-Revision-Date: 2015-06-18 11:36+0100\n" +"Last-Translator: Sergio Teruel \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" +"Language: es\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action -msgid "

\n" -" Click to create a new Banking Mandate.\n" -"

\n" -" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" -"

\n" -" " -msgstr "

\n" -" Pulse para crear un nuevo mandato bancario.\n" -"

\n" -" Un mandato bancario es un documento firmado por su cliente que le da autorización a hacer una o varias operaciones en su cuenta bancaria.\n" -"

\n" -" " +#, fuzzy +msgid "" +"

\n" +" Click to create a new Banking Mandate.\n" +"

\n" +" A Banking Mandate is a document signed by your customer that gives " +"you the autorization to do one or several operations on his bank account.\n" +"

\n" +" " +msgstr "" +"

\n" +" Click to create a new Banking Mandate.\n" +"

\n" +" A Banking Mandate is a document signed by your customer that gives " +"you the autorization to do one or several operations on his bank account.\n" +"

\n" +" " #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 @@ -40,6 +46,24 @@ msgstr "Ya existe un mandato con la misma referencia para esta compañía" msgid "A generic banking mandate" msgstr "Un mandato bancario genérico" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"As part of your rights, you are entitled to a refund from your bank under " +"the terms and conditions of your agreement with your bank.\n" +" A refund must be claimed within 8 weeks starting " +"from the date on which your account was debited." +msgstr "" +"Como parte de sus derechos, el deudor está legitimado al reembolso por su " +"entidad en los términos y condiciones del contrato suscrito con la misma. " +"La solicitud de reembolso deberá efectuarse dentro de las ocho semanas que " +"siguen a la fecha de adeudo en cuenta." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "BIC:" +msgstr "BIC:" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form msgid "Back to Draft" @@ -55,6 +79,11 @@ msgstr "Cuenta bancaria" msgid "Bank Accounts" msgstr "Cuentas bancarias" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Bank name:" +msgstr "Banco:" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree @@ -83,8 +112,18 @@ msgstr "Mandatos bancarios" #. module: account_banking_mandate #: help:res.partner.bank,mandate_ids:0 -msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" -msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a la compañía para un operación específica" +msgid "" +"Banking mandates represents an authorization that the bank account owner " +"gives to a company for a specific operation" +msgstr "" +"Los mandatos bancarios representan una autorización que el propietario de la " +"cuenta bancaria da a la compañía para un operación específica" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "By signing this mandate form, you authorise (A)" +msgstr "" +"Mediante la firma de esta orden de domiciliación, el deudor autoriza a (A) " #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form @@ -99,8 +138,12 @@ msgstr "Cancelado" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 #, python-format -msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." -msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" +"No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria " +"asociada." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 @@ -150,8 +193,26 @@ msgid "Date of the last message posted on the record." msgstr "Fecha del último mensaje publicado en el registro." #. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 -#: field:payment.line,mandate_id:0 +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Debtor identification code:" +msgstr "Código del deudor:" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Description of contract." +msgstr "Descripción del contrato." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Details regarding the underlying relationship between the Creditor and the " +"Debtor - for information purposes only." +msgstr "" +"Información sobre la relación subyacente entre el acreedor y el deudor - a " +"título meramente informativo." + +#. module: account_banking_mandate +#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 msgid "Direct Debit Mandate" msgstr "Mandato de adeudo directo" @@ -176,21 +237,71 @@ msgstr "Expirado" msgid "Followers" msgstr "Seguidores" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"For business users: write any code number here which you wish to have quoted " +"by your bank." +msgstr "" +"Para usuarios empresas: Indique en este espacio cualquier número de código " +"con el que desea que su entidad financiera le identifique." + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "Agrupar por" + #. module: account_banking_mandate #: help:account.banking.mandate,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." -msgstr "Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está directamente en formato html para ser insertado en vistas kanban." +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está " +"directamente en formato html para ser insertado en vistas kanban." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "IBAN:" +msgstr "IBAN:" #. module: account_banking_mandate #: field:account.banking.mandate,id:0 msgid "ID" msgstr "ID" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification code of the Creditor Reference Party." +msgstr "Código de identificación de la parte de referencia del acreedor" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification code of the Debtor Reference Party." +msgstr "Código de identificación de la parte de referencia del deudor" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Identification number of the underlying contract." +msgstr "Número de identificación del contrato subyacente" + #. module: account_banking_mandate #: help:account.banking.mandate,message_unread:0 msgid "If checked new messages require your attention." msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "If you are paying on your own behalf, leave blank." +msgstr "" +"Si realiza el pago en su propio nombre e interés, deje este espacio en " +"blanco." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "In respect of the contract:" +msgstr "Respecto al contrato:" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" @@ -216,6 +327,19 @@ msgstr "Última actualización por" msgid "Last Updated on" msgstr "Última actualización en" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Location and sign: _______________________, at ______ from ____________ from" +msgstr "" +"Lugar y fecha de la firma: _______________________, a ______ de ____________ " +"de" + +#. module: account_banking_mandate +#: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate +msgid "Mandate" +msgstr "Mandato SEPA" + #. module: account_banking_mandate #: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel msgid "Mandate Cancelled" @@ -259,32 +383,94 @@ msgstr "Mensajes" msgid "Messages and communication history" msgstr "Mensajes e historial de comunicación" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Name of the Creditor Reference Party: Creditor must complete this section if " +"collecting payment on behalf of another party." +msgstr "" +"Nombre de la parte de referencia del acreedor: el acreedor debe rellenar " +"esta sección si realiza el cobro a favor de un tercero." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"Name of the Debtor Reference Party: If you are making a payment in respect " +"of an arrangement between" +msgstr "" +"Nombre de la parte de referencia del deudor: Si realiza un pago como " +"consecuencia de un acuerdo entre" + #. module: account_banking_mandate #: help:account.banking.mandate,state:0 -msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." -msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" +"Sólo se pueden usar mandatos validados en una línea de pago. Un mandato " +"cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate #: field:account.banking.mandate,partner_id:0 msgid "Partner" msgstr "Empresa" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Party on whose behalf the creditor collects the payment:" +msgstr "Parte en cuyo favor el acreedor realiza el cobro:" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_payment_line msgid "Payment Line" msgstr "Línea de pago" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Payment type:" +msgstr "Tipo de pago" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Person on whose behalf payment is made:" +msgstr "Persona en cuyo nombre se realiza el pago:" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Policyholder Service / Debtor:" +msgstr "Tomador del servicio / Deudor:" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree msgid "Reference" msgstr "Referencia" +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "Referencia o cliente" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Reference:" +msgstr "Referencia:" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: field:account.banking.mandate,payment_line_ids:0 msgid "Related Payment Lines" msgstr "Líneas de pago relacionadas" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" +msgstr "Orden de domiciliación de adeudo directo SEPA B2B" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "SEPA DIRECT DEBIT MANDATE" +msgstr "Orden de domiciliación de adeudo directo SEPA" + #. module: account_banking_mandate #: model:ir.ui.menu,name:account_banking_mandate.mandate_menu msgid "SEPA Direct Debit Mandates" @@ -301,6 +487,12 @@ msgid "Search Banking Mandates" msgstr "Buscar mandatos bancarios" #. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Service Provider / Creditor:" +msgstr "Entidad prestadora del servicio / Acreedor:" + +#. module: account_banking_mandate +#: view:account.banking.mandate:account_banking_mandate.view_mandate_search #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree msgid "Signature Date" msgstr "Fecha de firma" @@ -324,14 +516,41 @@ msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 #, python-format -msgid "The mandate '%s' can't have a date of last debit before the date of signature." -msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" +"El mandato '%s' no puede tener una fecha de último cobro antes de la fecha " +"de firma." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/payment_line.py:68 #, python-format -msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria '%s')." +msgid "" +"The payment line with reference '%s' has the bank account '%s' which is not " +"attached to the mandate '%s' (this mandate is attached to the bank account " +"'%s')." +msgstr "" +"La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no " +"está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria " +"'%s')." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"This mandate is only intended for business-to-business transactions. You are " +"not entitled to a refund from your bank after your account has been debited, " +"but you are entitled to request your bank not to debit your account up until " +"the day on which the payment is due.\n" +" Please complete all the fields marked *." +msgstr "" +"Esta orden de domiciliación está prevista para operaciones exclusivamente " +"entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad le " +"reembolse una vez que se haya realizado el cargo en cuenta, pero puede " +"solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la fecha " +"debida. Podrá obtener información detallada del procedimiento en su entidad " +"financiera.\n" +"Por favor rellene todos los campos marcados con un *." #. module: account_banking_mandate #: field:account.banking.mandate,unique_mandate_reference:0 @@ -343,6 +562,11 @@ msgstr "Referencia única del mandato" msgid "Unread Messages" msgstr "Mensajes sin leer" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "VAT:" +msgstr "NIF:" + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search msgid "Valid" @@ -353,8 +577,46 @@ msgstr "Válido" msgid "Validate" msgstr "Validar" +#. module: account_banking_mandate +#: field:account.banking.mandate,website_message_ids:0 +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: account_banking_mandate +#: help:account.banking.mandate,website_message_ids:0 +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "Write any code number here which you wish to have quoted by your bank." +msgstr "" +"Indique en este espacio cualquier número de código con el que desea que su " +"entidad financiera le identifique." + #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" -msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" +"Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " +"error. ¿Desea continuar?" +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"and another person (e.g. where you are paying the other person's bill) " +"please write the other person's name here." +msgstr "" +"y otra persona (por ejemplo, el pago de la factura de otra persona) indique " +"el nombre de dicha persona en este espacio." + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "" +"to send instructions to your bank to debit your account and (B) your bank to " +"debit your account in accordance with the instructions from" +msgstr "" +"a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a la " +"entidad para efectuar los adeudos en su cuenta siguiendo las instrucciones de" diff --git a/account_banking_mandate/reports/account_banking_mandate.xml b/account_banking_mandate/reports/account_banking_mandate.xml new file mode 100644 index 00000000000..913da0bd3b9 --- /dev/null +++ b/account_banking_mandate/reports/account_banking_mandate.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/account_banking_mandate/reports/account_banking_mandate_view.xml b/account_banking_mandate/reports/account_banking_mandate_view.xml new file mode 100644 index 00000000000..49fa21a2198 --- /dev/null +++ b/account_banking_mandate/reports/account_banking_mandate_view.xml @@ -0,0 +1,146 @@ + + + + + + + + + + From 609bd6e60638a61218d72117a5dde6cff3b52847 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 1 Feb 2016 19:35:31 +0100 Subject: [PATCH 006/118] [FIX] account_banking_mandate: Fix name_get call --- account_banking_mandate/models/payment_line.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/account_banking_mandate/models/payment_line.py b/account_banking_mandate/models/payment_line.py index 9a176cf6107..3752dec9716 100644 --- a/account_banking_mandate/models/payment_line.py +++ b/account_banking_mandate/models/payment_line.py @@ -69,8 +69,6 @@ def _check_mandate_bank_link(self): "'%s' which is not attached to the mandate '%s' (this " "mandate is attached to the bank account '%s').") % (self.name, - self.env['res.partner.bank'].name_get( - [self.bank_id.id])[0][1], + self.bank_id.name_get()[0][1], self.mandate_id.unique_mandate_reference, - self.env['res.partner.bank'].name_get( - [self.mandate_id.partner_bank_id.id])[0][1])) + self.mandate_id.partner_bank_id.name_get()[0][1])) From 0d843a108f013bff1a584d13775582fe007f9fe8 Mon Sep 17 00:00:00 2001 From: Antonio Espinosa Date: Wed, 10 Feb 2016 15:30:09 +0100 Subject: [PATCH 007/118] [FIX] Allow to select bank account when creating a mandate --- account_banking_mandate/views/account_banking_mandate_view.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index d4c016e027c..2c66bd06c2b 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -32,8 +32,7 @@ + invisible="context.get('mandate_bank_partner_view')" /> From 12310ebdf4725c618e8e386c3e78df1d327334b8 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 13 Feb 2016 20:22:26 +0100 Subject: [PATCH 008/118] [FIX] account_banking_mandate: es translation --- account_banking_mandate/i18n/es.po | 208 ++++++++--------------------- 1 file changed, 58 insertions(+), 150 deletions(-) diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index 329ee055d7e..dfc71c66322 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -1,38 +1,37 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_banking_mandate +# * account_banking_mandate # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-18 08:15+0000\n" -"PO-Revision-Date: 2015-06-18 11:36+0100\n" -"Last-Translator: Sergio Teruel \n" +"POT-Creation-Date: 2016-02-13 19:13+0000\n" +"PO-Revision-Date: 2016-02-13 19:13+0000\n" +"Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" -"Language: es\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_banking_mandate +#: view:website:account_banking_mandate.account_banking_mandate_document +msgid "/ BIC:" +msgstr "/ BIC:" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action -#, fuzzy -msgid "" -"

\n" +msgid "

\n" " Click to create a new Banking Mandate.\n" "

\n" -" A Banking Mandate is a document signed by your customer that gives " -"you the autorization to do one or several operations on his bank account.\n" +" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" "

\n" " " -msgstr "" -"

\n" -" Click to create a new Banking Mandate.\n" +msgstr "

\n" +" Pulse para crear un nuevo mandato bancario.\n" "

\n" -" A Banking Mandate is a document signed by your customer that gives " -"you the autorization to do one or several operations on his bank account.\n" +" Un mandato bancario es un documento firmado por su cliente que le da la autorización para hacer una o varias operaciones en su cuenta bancaria.\n" "

\n" " " @@ -48,21 +47,10 @@ msgstr "Un mandato bancario genérico" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"As part of your rights, you are entitled to a refund from your bank under " -"the terms and conditions of your agreement with your bank.\n" -" A refund must be claimed within 8 weeks starting " -"from the date on which your account was debited." -msgstr "" -"Como parte de sus derechos, el deudor está legitimado al reembolso por su " -"entidad en los términos y condiciones del contrato suscrito con la misma. " -"La solicitud de reembolso deberá efectuarse dentro de las ocho semanas que " -"siguen a la fecha de adeudo en cuenta." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "BIC:" -msgstr "BIC:" +msgid "As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank.\n" +" A refund must be claimed within 8 weeks starting from the date on which your account was debited." +msgstr "Como parte de sus derechos, el deudor está legitimado al reembolso por su entidad en los términos y condiciones del contrato suscrito con la misma..\n" +" La solicitud de reembolso deberá efectuarse dentro de las ocho semanas que siguen a la fecha de adeudo en cuenta." #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form @@ -112,18 +100,13 @@ msgstr "Mandatos bancarios" #. module: account_banking_mandate #: help:res.partner.bank,mandate_ids:0 -msgid "" -"Banking mandates represents an authorization that the bank account owner " -"gives to a company for a specific operation" -msgstr "" -"Los mandatos bancarios representan una autorización que el propietario de la " -"cuenta bancaria da a la compañía para un operación específica" +msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" +msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a la compañía para un operación específica" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document msgid "By signing this mandate form, you authorise (A)" -msgstr "" -"Mediante la firma de esta orden de domiciliación, el deudor autoriza a (A) " +msgstr "Mediante la firma de esta orden de domiciliación, el deudor autoriza a (A) " #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form @@ -138,12 +121,8 @@ msgstr "Cancelado" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 #, python-format -msgid "" -"Cannot validate the mandate '%s' because it is not attached to a bank " -"account." -msgstr "" -"No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria " -"asociada." +msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." +msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 @@ -204,15 +183,12 @@ msgstr "Descripción del contrato." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Details regarding the underlying relationship between the Creditor and the " -"Debtor - for information purposes only." -msgstr "" -"Información sobre la relación subyacente entre el acreedor y el deudor - a " -"título meramente informativo." +msgid "Details regarding the underlying relationship between the Creditor and the Debtor - for information purposes only." +msgstr "Información sobre la relación subyacente entre el acreedor y el deudor - a título meramente informativo." #. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 +#: field:account.invoice,mandate_id:0 +#: field:payment.line,mandate_id:0 msgid "Direct Debit Mandate" msgstr "Mandato de adeudo directo" @@ -239,12 +215,8 @@ msgstr "Seguidores" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"For business users: write any code number here which you wish to have quoted " -"by your bank." -msgstr "" -"Para usuarios empresas: Indique en este espacio cualquier número de código " -"con el que desea que su entidad financiera le identifique." +msgid "For business users: write any code number here which you wish to have quoted by your bank." +msgstr "Para usuarios empresas: Indique en este espacio cualquier número de código con el que desea que su entidad financiera le identifique." #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search @@ -253,12 +225,8 @@ msgstr "Agrupar por" #. module: account_banking_mandate #: help:account.banking.mandate,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." -msgstr "" -"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está " -"directamente en formato html para ser insertado en vistas kanban." +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está directamente en formato html para ser insertado en vistas kanban." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document @@ -293,9 +261,7 @@ msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document msgid "If you are paying on your own behalf, leave blank." -msgstr "" -"Si realiza el pago en su propio nombre e interés, deje este espacio en " -"blanco." +msgstr "Si realiza el pago en su propio nombre e interés, deje este espacio en blanco." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document @@ -329,11 +295,8 @@ msgstr "Última actualización en" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Location and sign: _______________________, at ______ from ____________ from" -msgstr "" -"Lugar y fecha de la firma: _______________________, a ______ de ____________ " -"de" +msgid "Location and sign: _______________________, at ______ from ____________ from" +msgstr "Lugar y fecha de la firma: _______________________, a ______ de ____________ de" #. module: account_banking_mandate #: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate @@ -385,30 +348,18 @@ msgstr "Mensajes e historial de comunicación" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Name of the Creditor Reference Party: Creditor must complete this section if " -"collecting payment on behalf of another party." -msgstr "" -"Nombre de la parte de referencia del acreedor: el acreedor debe rellenar " -"esta sección si realiza el cobro a favor de un tercero." +msgid "Name of the Creditor Reference Party: Creditor must complete this section if collecting payment on behalf of another party." +msgstr "Nombre de la parte de referencia del acreedor: el acreedor debe rellenar esta sección si realiza el cobro a favor de un tercero." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Name of the Debtor Reference Party: If you are making a payment in respect " -"of an arrangement between" -msgstr "" -"Nombre de la parte de referencia del deudor: Si realiza un pago como " -"consecuencia de un acuerdo entre" +msgid "Name of the Debtor Reference Party: If you are making a payment in respect of an arrangement between" +msgstr "Nombre de la parte de referencia del deudor: Si realiza un pago como consecuencia de un acuerdo entre" #. module: account_banking_mandate #: help:account.banking.mandate,state:0 -msgid "" -"Only valid mandates can be used in a payment line. A cancelled mandate is a " -"mandate that has been cancelled by the customer." -msgstr "" -"Sólo se pueden usar mandatos validados en una línea de pago. Un mandato " -"cancelado en un mandato que ha sido invalidado por el cliente." +msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." +msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate #: field:account.banking.mandate,partner_id:0 @@ -516,41 +467,21 @@ msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 #, python-format -msgid "" -"The mandate '%s' can't have a date of last debit before the date of " -"signature." -msgstr "" -"El mandato '%s' no puede tener una fecha de último cobro antes de la fecha " -"de firma." +msgid "The mandate '%s' can't have a date of last debit before the date of signature." +msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/payment_line.py:68 #, python-format -msgid "" -"The payment line with reference '%s' has the bank account '%s' which is not " -"attached to the mandate '%s' (this mandate is attached to the bank account " -"'%s')." -msgstr "" -"La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no " -"está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria " -"'%s')." +msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria '%s')." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"This mandate is only intended for business-to-business transactions. You are " -"not entitled to a refund from your bank after your account has been debited, " -"but you are entitled to request your bank not to debit your account up until " -"the day on which the payment is due.\n" -" Please complete all the fields marked *." -msgstr "" -"Esta orden de domiciliación está prevista para operaciones exclusivamente " -"entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad le " -"reembolse una vez que se haya realizado el cargo en cuenta, pero puede " -"solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la fecha " -"debida. Podrá obtener información detallada del procedimiento en su entidad " -"financiera.\n" -"Por favor rellene todos los campos marcados con un *." +msgid "This mandate is only intended for business-to-business transactions. You are not entitled to a refund from your bank after your account has been debited, but you are entitled to request your bank not to debit your account up until the day on which the payment is due.\n" +" Please complete all the fields marked *." +msgstr "Esta orden de domiciliación está prevista para operaciones exclusivamente entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad le reembolse una vez que se haya realizado el cargo en cuenta, pero puede solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la fecha debida. Podrá obtener información detallada del procedimiento en su entidad financiera\n" +" Por favor rellene todos los campos marcados con un *." #. module: account_banking_mandate #: field:account.banking.mandate,unique_mandate_reference:0 @@ -577,46 +508,23 @@ msgstr "Válido" msgid "Validate" msgstr "Validar" -#. module: account_banking_mandate -#: field:account.banking.mandate,website_message_ids:0 -msgid "Website Messages" -msgstr "Mensajes del sitio web" - -#. module: account_banking_mandate -#: help:account.banking.mandate,website_message_ids:0 -msgid "Website communication history" -msgstr "Historial de comunicación del sitio web" - #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document msgid "Write any code number here which you wish to have quoted by your bank." -msgstr "" -"Indique en este espacio cualquier número de código con el que desea que su " -"entidad financiera le identifique." +msgstr "Indique en este espacio cualquier número de código con el que desea que su entidad financiera le identifique." #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "" -"You should set a mandate back to draft only if you cancelled it by mistake. " -"Do you want to continue?" -msgstr "" -"Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " -"error. ¿Desea continuar?" +msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" +msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"and another person (e.g. where you are paying the other person's bill) " -"please write the other person's name here." -msgstr "" -"y otra persona (por ejemplo, el pago de la factura de otra persona) indique " -"el nombre de dicha persona en este espacio." +msgid "and another person (e.g. where you are paying the other person's bill) please write the other person's name here." +msgstr "y otra persona (por ejemplo, el pago de la factura de otra persona) indique el nombre de dicha persona en este espacio." #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"to send instructions to your bank to debit your account and (B) your bank to " -"debit your account in accordance with the instructions from" -msgstr "" -"a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a la " -"entidad para efectuar los adeudos en su cuenta siguiendo las instrucciones de" +msgid "to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from" +msgstr "a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a la entidad para efectuar los adeudos en su cuenta siguiendo las instrucciones de" + From a21f0fcc289b3b8be98d34d3fbf7a3a9dc6e3bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Lodeiros?= Date: Sun, 14 Feb 2016 19:42:34 +0100 Subject: [PATCH 009/118] Mandates multicompany error #242 The restriction rule Banking Mandate multi-company, gives an error when editing a partner bank account from a company A when that account has created a mandate from another company B. So it is impossible to create a mandate for each company without disabling the rule. Solution: Uncheck the rule writte in Banking Mandate multi-company. But i'm not sure this is correct. --- account_banking_mandate/security/mandate_security.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/account_banking_mandate/security/mandate_security.xml b/account_banking_mandate/security/mandate_security.xml index 889413a84b1..5ca991c0bdc 100644 --- a/account_banking_mandate/security/mandate_security.xml +++ b/account_banking_mandate/security/mandate_security.xml @@ -13,6 +13,10 @@ Banking Mandate multi-company ['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])] + + + + From 7c1070f508e19715b2fab88846518f29b0a60b99 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 21 Sep 2015 12:32:45 +0200 Subject: [PATCH 010/118] Add bank.payment.lines object to allow grouping in the payments --- account_banking_mandate/__openerp__.py | 3 +- account_banking_mandate/models/__init__.py | 1 + .../models/bank_payment_line.py | 38 +++++++++++++++++++ .../models/payment_line.py | 8 ++-- .../views/account_payment_view.xml | 12 ++++-- .../views/bank_payment_line_view.xml | 36 ++++++++++++++++++ 6 files changed, 90 insertions(+), 8 deletions(-) create mode 100644 account_banking_mandate/models/bank_payment_line.py create mode 100644 account_banking_mandate/views/bank_payment_line_view.xml diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index 0309a15d24b..abee60c1819 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -32,13 +32,14 @@ 'website': 'https://github.com/OCA/bank-payment', 'category': 'Banking addons', 'depends': [ - 'account_payment', + 'account_banking_payment_export', ], 'data': [ 'views/account_banking_mandate_view.xml', 'views/account_invoice_view.xml', 'views/account_payment_view.xml', 'views/res_partner_bank_view.xml', + 'views/bank_payment_line_view.xml', 'data/mandate_reference_sequence.xml', 'data/report_paperformat.xml', 'security/mandate_security.xml', diff --git a/account_banking_mandate/models/__init__.py b/account_banking_mandate/models/__init__.py index 52a6f46166b..4b191f0d13e 100644 --- a/account_banking_mandate/models/__init__.py +++ b/account_banking_mandate/models/__init__.py @@ -24,3 +24,4 @@ from . import account_invoice from . import res_partner_bank from . import payment_line +from . import bank_payment_line diff --git a/account_banking_mandate/models/bank_payment_line.py b/account_banking_mandate/models/bank_payment_line.py new file mode 100644 index 00000000000..cb268198cda --- /dev/null +++ b/account_banking_mandate/models/bank_payment_line.py @@ -0,0 +1,38 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Mandate module for Odoo +# Copyright (C) 2015 Akretion (http://www.akretion.com) +# @author: Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields, api + + +class BankPaymentLine(models.Model): + _inherit = 'bank.payment.line' + + mandate_id = fields.Many2one( + comodel_name='account.banking.mandate', string='Direct Debit Mandate', + related='payment_line_ids.mandate_id') + + @api.model + def same_fields_payment_line_and_bank_payment_line(self): + res = super(BankPaymentLine, self).\ + same_fields_payment_line_and_bank_payment_line() + res.append('mandate_id') + return res diff --git a/account_banking_mandate/models/payment_line.py b/account_banking_mandate/models/payment_line.py index 3752dec9716..fa044ea29dd 100644 --- a/account_banking_mandate/models/payment_line.py +++ b/account_banking_mandate/models/payment_line.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Mandate module for openERP +# Mandate module for Odoo # Copyright (C) 2014 Compassion CH (http://www.compassion.ch) # @author: Cyril Sester , # Alexis de Lattre @@ -69,6 +69,8 @@ def _check_mandate_bank_link(self): "'%s' which is not attached to the mandate '%s' (this " "mandate is attached to the bank account '%s').") % (self.name, - self.bank_id.name_get()[0][1], + self.env['res.partner.bank'].name_get( + [self.bank_id.id])[0][1], self.mandate_id.unique_mandate_reference, - self.mandate_id.partner_bank_id.name_get()[0][1])) + self.env['res.partner.bank'].name_get( + [self.mandate_id.partner_bank_id.id])[0][1])) diff --git a/account_banking_mandate/views/account_payment_view.xml b/account_banking_mandate/views/account_payment_view.xml index 39ec869532d..9d2ced2cf21 100644 --- a/account_banking_mandate/views/account_payment_view.xml +++ b/account_banking_mandate/views/account_payment_view.xml @@ -10,14 +10,18 @@ mandate.payment.order.form payment.order - + - - + + - + diff --git a/account_banking_mandate/views/bank_payment_line_view.xml b/account_banking_mandate/views/bank_payment_line_view.xml new file mode 100644 index 00000000000..25c8656e562 --- /dev/null +++ b/account_banking_mandate/views/bank_payment_line_view.xml @@ -0,0 +1,36 @@ + + + + + + + banking.mandate.bank.payment.line.form + bank.payment.line + + + + + + + + + + banking.mandate.bank.payment.line.tree + bank.payment.line + + + + + + + + + + + From 87801cee7781472a66daa94bb6bcd7a3079242d9 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 15 Feb 2016 23:10:18 +0100 Subject: [PATCH 011/118] [IMP] account_banking_mandate: Cleanup * Short headers * Bump version numbers * es translations --- account_banking_mandate/__init__.py | 25 +++---------- account_banking_mandate/__openerp__.py | 30 ++++------------ account_banking_mandate/i18n/es.po | 34 +++++++++--------- account_banking_mandate/models/__init__.py | 27 +++----------- .../models/account_banking_mandate.py | 35 +++++-------------- .../models/account_invoice.py | 27 +++----------- .../models/bank_payment_line.py | 26 +++----------- .../models/payment_line.py | 27 +++----------- .../models/res_partner_bank.py | 26 +++----------- 9 files changed, 62 insertions(+), 195 deletions(-) diff --git a/account_banking_mandate/__init__.py b/account_banking_mandate/__init__.py index 2af74b3d233..e5d6460e04c 100644 --- a/account_banking_mandate/__init__.py +++ b/account_banking_mandate/__init__.py @@ -1,22 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import models diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index abee60c1819..36d7de2dc98 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -1,29 +1,13 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2015 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '8.0.0.1.0', + 'version': '8.0.0.2.0', 'license': 'AGPL-3', 'author': "Compassion CH, " "Serv. Tecnol. Avanzados - Pedro M. Baeza, " diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index dfc71c66322..6db65dec89e 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-13 19:13+0000\n" -"PO-Revision-Date: 2016-02-13 19:13+0000\n" +"POT-Creation-Date: 2016-02-16 07:21+0000\n" +"PO-Revision-Date: 2016-02-16 07:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,7 +65,12 @@ msgstr "Cuenta bancaria" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner_bank msgid "Bank Accounts" -msgstr "Cuentas bancarias" +msgstr "Cuentas de banco" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Líneas de pago bancario" #. module: account_banking_mandate #: view:website:account_banking_mandate.account_banking_mandate_document @@ -119,13 +124,13 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:93 #, python-format msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:89 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." @@ -145,11 +150,6 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" -#. module: account_banking_mandate -#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form -msgid "DD Mandate" -msgstr "Mandato bancario" - #. module: account_banking_mandate #: view:res.partner:account_banking_mandate.mandate_partner_form #: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_tree @@ -299,7 +299,9 @@ msgid "Location and sign: _______________________, at ______ from ____________ f msgstr "Lugar y fecha de la firma: _______________________, a ______ de ____________ de" #. module: account_banking_mandate +#: view:bank.payment.line:account_banking_mandate.bank_payment_line_tree #: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate +#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form msgid "Mandate" msgstr "Mandato SEPA" @@ -319,19 +321,19 @@ msgid "Mandate Validated" msgstr "Mandato validado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "Mandate should be in cancel state" msgstr "El mandato debe estar en estado cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 #, python-format msgid "Mandate should be in draft or valid state" msgstr "El mandato debe estar en estado borrador o validado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:131 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 #, python-format msgid "Mandate should be in draft state" msgstr "El mandato debe estar en estado borrador" @@ -459,19 +461,19 @@ msgid "Summary" msgstr "Resumen" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:92 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:75 #, python-format msgid "The date of signature of mandate '%s' is in the future !" msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:80 #, python-format msgid "The mandate '%s' can't have a date of last debit before the date of signature." msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/payment_line.py:68 +#: code:addons/account_banking_mandate/models/payment_line.py:51 #, python-format msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria '%s')." diff --git a/account_banking_mandate/models/__init__.py b/account_banking_mandate/models/__init__.py index 4b191f0d13e..cb0da2fd586 100644 --- a/account_banking_mandate/models/__init__.py +++ b/account_banking_mandate/models/__init__.py @@ -1,25 +1,8 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2015 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import account_banking_mandate from . import account_invoice from . import res_partner_bank diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 1e6564a6bef..233ea3b35e3 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -1,34 +1,17 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2015 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, exceptions, api, _ class AccountBankingMandate(models.Model): - ''' The banking mandate is attached to a bank account and represents an - authorization that the bank account owner gives to a company for a - specific operation (such as direct debit) - ''' + """The banking mandate is attached to a bank account and represents an + authorization that the bank account owner gives to a company for a + specific operation (such as direct debit) + """ _name = 'account.banking.mandate' _description = "A generic banking mandate" _rec_name = 'unique_mandate_reference' diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index e040c426fbc..f5eb7f28745 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -1,25 +1,8 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from openerp import models, fields diff --git a/account_banking_mandate/models/bank_payment_line.py b/account_banking_mandate/models/bank_payment_line.py index cb268198cda..4952c17a0f3 100644 --- a/account_banking_mandate/models/bank_payment_line.py +++ b/account_banking_mandate/models/bank_payment_line.py @@ -1,24 +1,8 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for Odoo -# Copyright (C) 2015 Akretion (http://www.akretion.com) -# @author: Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2015 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, api diff --git a/account_banking_mandate/models/payment_line.py b/account_banking_mandate/models/payment_line.py index fa044ea29dd..96bd73f41bf 100644 --- a/account_banking_mandate/models/payment_line.py +++ b/account_banking_mandate/models/payment_line.py @@ -1,25 +1,8 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for Odoo -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2015 Akretion - Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, api, exceptions, _ diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py index d3d40e48106..119d3b4ffc7 100644 --- a/account_banking_mandate/models/res_partner_bank.py +++ b/account_banking_mandate/models/res_partner_bank.py @@ -1,25 +1,7 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Mandate module for openERP -# Copyright (C) 2014 Compassion CH (http://www.compassion.ch) -# @author: Cyril Sester , -# Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2014 Compassion CH - Cyril Sester +# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields From c4b7d5c803230dd0c7ff8f441791aea39a088e4a Mon Sep 17 00:00:00 2001 From: Sergio Incaser Date: Fri, 1 Apr 2016 12:37:34 +0200 Subject: [PATCH 012/118] [FIX+IMP] account_banking_mandate: Several fixes and imps: * Add creditor identifier field to report mandate. * Translate. * Split basic and sepa mandate * Use api.multi instead * Make format field required --- account_banking_mandate/__openerp__.py | 3 - .../data/report_paperformat.xml | 22 - .../i18n/account_banking_mandate.pot | 569 ------------------ account_banking_mandate/i18n/es.po | 418 +++++++------ .../models/account_banking_mandate.py | 60 +- .../reports/account_banking_mandate.xml | 20 - .../reports/account_banking_mandate_view.xml | 146 ----- .../views/account_banking_mandate_view.xml | 4 +- 8 files changed, 274 insertions(+), 968 deletions(-) delete mode 100644 account_banking_mandate/data/report_paperformat.xml delete mode 100644 account_banking_mandate/i18n/account_banking_mandate.pot delete mode 100644 account_banking_mandate/reports/account_banking_mandate.xml delete mode 100644 account_banking_mandate/reports/account_banking_mandate_view.xml diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index 36d7de2dc98..991d617d922 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -25,11 +25,8 @@ 'views/res_partner_bank_view.xml', 'views/bank_payment_line_view.xml', 'data/mandate_reference_sequence.xml', - 'data/report_paperformat.xml', 'security/mandate_security.xml', 'security/ir.model.access.csv', - 'reports/account_banking_mandate_view.xml', - 'reports/account_banking_mandate.xml', ], 'demo': [], 'test': ['test/banking_mandate.yml'], diff --git a/account_banking_mandate/data/report_paperformat.xml b/account_banking_mandate/data/report_paperformat.xml deleted file mode 100644 index 631dc93f7cd..00000000000 --- a/account_banking_mandate/data/report_paperformat.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - European A4 low margin for SEPA - - A4 - 0 - 0 - Portrait - 10 - 10 - 5 - 5 - - 0 - 80 - - - - diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot deleted file mode 100644 index 912fcd667bf..00000000000 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ /dev/null @@ -1,569 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_banking_mandate -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-18 08:15+0000\n" -"PO-Revision-Date: 2015-06-18 10:18+0100\n" -"Last-Translator: Sergio Teruel \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"X-Generator: Poedit 1.5.4\n" - -#. module: account_banking_mandate -#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action -msgid "" -"

\n" -" Click to create a new Banking Mandate.\n" -"

\n" -" A Banking Mandate is a document signed by your customer that gives " -"you the autorization to do one or several operations on his bank account.\n" -"

\n" -" " -msgstr "" - -#. module: account_banking_mandate -#: sql_constraint:account.banking.mandate:0 -msgid "A Mandate with the same reference already exists for this company !" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate -msgid "A generic banking mandate" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"As part of your rights, you are entitled to a refund from your bank under " -"the terms and conditions of your agreement with your bank.\n" -" A refund must be claimed within 8 weeks starting " -"from the date on which your account was debited." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "BIC:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "Back to Draft" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,partner_bank_id:0 -msgid "Bank Account" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner_bank -msgid "Bank Accounts" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Bank name:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree -msgid "Banking Mandate" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_cancel -msgid "Banking Mandate Cancelled" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_valid -msgid "Banking Mandate Validated" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_expired -msgid "Banking Mandate has Expired" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action -msgid "Banking Mandates" -msgstr "" - -#. module: account_banking_mandate -#: help:res.partner.bank,mandate_ids:0 -msgid "" -"Banking mandates represents an authorization that the bank account owner " -"gives to a company for a specific operation" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "By signing this mandate form, you authorise (A)" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "Cancel" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Cancelled" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:110 -#, python-format -msgid "" -"Cannot validate the mandate '%s' because it is not attached to a bank " -"account." -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:106 -#, python-format -msgid "Cannot validate the mandate '%s' without a date of signature." -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,company_id:0 -msgid "Company" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,create_date:0 -msgid "Created on" -msgstr "" - -#. module: account_banking_mandate -#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form -msgid "DD Mandate" -msgstr "" - -#. module: account_banking_mandate -#: view:res.partner:account_banking_mandate.mandate_partner_form -#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_tree -msgid "DD Mandates" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,signature_date:0 -msgid "Date of Signature of the Mandate" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,last_debit_date:0 -msgid "Date of the Last Debit" -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Debtor identification code:" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Description of contract." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Details regarding the underlying relationship between the Creditor and the " -"Debtor - for information purposes only." -msgstr "" - -#. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 -msgid "Direct Debit Mandate" -msgstr "" - -#. module: account_banking_mandate -#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_form -#: field:res.partner.bank,mandate_ids:0 -msgid "Direct Debit Mandates" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Draft" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Expired" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"For business users: write any code number here which you wish to have quoted " -"by your bank." -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Group By" -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "IBAN:" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,id:0 -msgid "ID" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification code of the Creditor Reference Party." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification code of the Debtor Reference Party." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification number of the underlying contract." -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "If you are paying on your own behalf, leave blank." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "In respect of the contract:" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_account_invoice -msgid "Invoice" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_last_post:0 -msgid "Last Message Date" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,write_date:0 -msgid "Last Updated on" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Location and sign: _______________________, at ______ from ____________ from" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate -msgid "Mandate" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel -msgid "Mandate Cancelled" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_expired -msgid "Mandate Expired" -msgstr "" - -#. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_valid -msgid "Mandate Validated" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 -#, python-format -msgid "Mandate should be in cancel state" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 -#, python-format -msgid "Mandate should be in draft or valid state" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:131 -#, python-format -msgid "Mandate should be in draft state" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Name of the Creditor Reference Party: Creditor must complete this section if " -"collecting payment on behalf of another party." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"Name of the Debtor Reference Party: If you are making a payment in respect " -"of an arrangement between" -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,state:0 -msgid "" -"Only valid mandates can be used in a payment line. A cancelled mandate is a " -"mandate that has been cancelled by the customer." -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Party on whose behalf the creditor collects the payment:" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_payment_line -msgid "Payment Line" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Payment type:" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Person on whose behalf payment is made:" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Policyholder Service / Debtor:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree -msgid "Reference" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Reference or Partner" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Reference:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -#: field:account.banking.mandate,payment_line_ids:0 -msgid "Related Payment Lines" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "SEPA DIRECT DEBIT MANDATE" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu -msgid "SEPA Direct Debit Mandates" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,scan:0 -msgid "Scan of the Mandate" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Search Banking Mandates" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Service Provider / Creditor:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree -msgid "Signature Date" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,state:0 -msgid "Status" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_summary:0 -msgid "Summary" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:92 -#, python-format -msgid "The date of signature of mandate '%s' is in the future !" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 -#, python-format -msgid "" -"The mandate '%s' can't have a date of last debit before the date of " -"signature." -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/payment_line.py:68 -#, python-format -msgid "" -"The payment line with reference '%s' has the bank account '%s' which is not " -"attached to the mandate '%s' (this mandate is attached to the bank account " -"'%s')." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"This mandate is only intended for business-to-business transactions. You are " -"not entitled to a refund from your bank after your account has been debited, " -"but you are entitled to request your bank not to debit your account up until " -"the day on which the payment is due.\n" -" Please complete all the fields marked *." -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,unique_mandate_reference:0 -msgid "Unique Mandate Reference" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,message_unread:0 -msgid "Unread Messages" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "VAT:" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -msgid "Valid" -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "Validate" -msgstr "" - -#. module: account_banking_mandate -#: field:account.banking.mandate,website_message_ids:0 -msgid "Website Messages" -msgstr "" - -#. module: account_banking_mandate -#: help:account.banking.mandate,website_message_ids:0 -msgid "Website communication history" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Write any code number here which you wish to have quoted by your bank." -msgstr "" - -#. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "" -"You should set a mandate back to draft only if you cancelled it by mistake. " -"Do you want to continue?" -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"and another person (e.g. where you are paying the other person's bill) " -"please write the other person's name here." -msgstr "" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "" -"to send instructions to your bank to debit your account and (B) your bank to " -"debit your account in accordance with the instructions from" -msgstr "" diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index 6db65dec89e..c69519c8dc7 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -1,37 +1,37 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_banking_mandate +# * account_banking_mandate # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-16 07:21+0000\n" -"PO-Revision-Date: 2016-02-16 07:21+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-04-05 20:09+0000\n" +"PO-Revision-Date: 2016-04-05 22:12+0100\n" +"Last-Translator: Sergio Teruel \n" "Language-Team: \n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "/ BIC:" -msgstr "/ BIC:" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action -msgid "

\n" +msgid "" +"

\n" " Click to create a new Banking Mandate.\n" "

\n" -" A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account.\n" +" A Banking Mandate is a document signed by your customer that gives " +"you the autorization to do one or several operations on his bank account.\n" "

\n" " " -msgstr "

\n" +msgstr "" +"

\n" " Pulse para crear un nuevo mandato bancario.\n" "

\n" -" Un mandato bancario es un documento firmado por su cliente que le da la autorización para hacer una o varias operaciones en su cuenta bancaria.\n" +" Un mandato bancario es un documento firmado por su cliente que le da " +"la autorización para hacer una o varias operaciones en su cuenta bancaria.\n" "

\n" " " @@ -45,13 +45,6 @@ msgstr "Ya existe un mandato con la misma referencia para esta compañía" msgid "A generic banking mandate" msgstr "Un mandato bancario genérico" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank.\n" -" A refund must be claimed within 8 weeks starting from the date on which your account was debited." -msgstr "Como parte de sus derechos, el deudor está legitimado al reembolso por su entidad en los términos y condiciones del contrato suscrito con la misma..\n" -" La solicitud de reembolso deberá efectuarse dentro de las ocho semanas que siguen a la fecha de adeudo en cuenta." - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form msgid "Back to Draft" @@ -72,11 +65,6 @@ msgstr "Cuentas de banco" msgid "Bank Payment Lines" msgstr "Líneas de pago bancario" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Bank name:" -msgstr "Banco:" - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree @@ -105,13 +93,19 @@ msgstr "Mandatos bancarios" #. module: account_banking_mandate #: help:res.partner.bank,mandate_ids:0 -msgid "Banking mandates represents an authorization that the bank account owner gives to a company for a specific operation" -msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a la compañía para un operación específica" +msgid "" +"Banking mandates represents an authorization that the bank account owner " +"gives to a company for a specific operation" +msgstr "" +"Los mandatos bancarios representan una autorización que el propietario de la " +"cuenta bancaria da a la compañía para un operación específica" #. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "By signing this mandate form, you authorise (A)" -msgstr "Mediante la firma de esta orden de domiciliación, el deudor autoriza a (A) " +#: selection:account.banking.mandate,format:0 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:39 +#, python-format +msgid "Basic Mandate" +msgstr "Mandato básico" #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form @@ -124,13 +118,17 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:93 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:98 #, python-format -msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." -msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" +"No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria " +"asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:89 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:94 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." @@ -172,23 +170,7 @@ msgid "Date of the last message posted on the record." msgstr "Fecha del último mensaje publicado en el registro." #. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Debtor identification code:" -msgstr "Código del deudor:" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Description of contract." -msgstr "Descripción del contrato." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Details regarding the underlying relationship between the Creditor and the Debtor - for information purposes only." -msgstr "Información sobre la relación subyacente entre el acreedor y el deudor - a título meramente informativo." - -#. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 -#: field:payment.line,mandate_id:0 +#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 msgid "Direct Debit Mandate" msgstr "Mandato de adeudo directo" @@ -214,9 +196,10 @@ msgid "Followers" msgstr "Seguidores" #. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "For business users: write any code number here which you wish to have quoted by your bank." -msgstr "Para usuarios empresas: Indique en este espacio cualquier número de código con el que desea que su entidad financiera le identifique." +#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "Formato" #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search @@ -225,49 +208,23 @@ msgstr "Agrupar por" #. module: account_banking_mandate #: help:account.banking.mandate,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." -msgstr "Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está directamente en formato html para ser insertado en vistas kanban." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "IBAN:" -msgstr "IBAN:" +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está " +"directamente en formato html para ser insertado en vistas kanban." #. module: account_banking_mandate #: field:account.banking.mandate,id:0 msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification code of the Creditor Reference Party." -msgstr "Código de identificación de la parte de referencia del acreedor" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification code of the Debtor Reference Party." -msgstr "Código de identificación de la parte de referencia del deudor" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Identification number of the underlying contract." -msgstr "Número de identificación del contrato subyacente" - #. module: account_banking_mandate #: help:account.banking.mandate,message_unread:0 msgid "If checked new messages require your attention." msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "If you are paying on your own behalf, leave blank." -msgstr "Si realiza el pago en su propio nombre e interés, deje este espacio en blanco." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "In respect of the contract:" -msgstr "Respecto al contrato:" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" @@ -293,14 +250,8 @@ msgstr "Última actualización por" msgid "Last Updated on" msgstr "Última actualización en" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Location and sign: _______________________, at ______ from ____________ from" -msgstr "Lugar y fecha de la firma: _______________________, a ______ de ____________ de" - #. module: account_banking_mandate #: view:bank.payment.line:account_banking_mandate.bank_payment_line_tree -#: model:ir.actions.report.xml,name:account_banking_mandate.report_account_banking_mandate #: view:payment.order:account_banking_mandate.view_mandate_payment_order_form msgid "Mandate" msgstr "Mandato SEPA" @@ -315,25 +266,30 @@ msgstr "Mandato cancelado" msgid "Mandate Expired" msgstr "Mandato expirado" +#. module: account_banking_mandate +#: field:account.banking.mandate,format:0 +msgid "Mandate Format" +msgstr "Formato del mandato" + #. module: account_banking_mandate #: model:mail.message.subtype,name:account_banking_mandate.mandate_valid msgid "Mandate Validated" msgstr "Mandato validado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "Mandate should be in cancel state" msgstr "El mandato debe estar en estado cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:128 #, python-format msgid "Mandate should be in draft or valid state" msgstr "El mandato debe estar en estado borrador o validado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "Mandate should be in draft state" msgstr "El mandato debe estar en estado borrador" @@ -348,51 +304,25 @@ msgstr "Mensajes" msgid "Messages and communication history" msgstr "Mensajes e historial de comunicación" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Name of the Creditor Reference Party: Creditor must complete this section if collecting payment on behalf of another party." -msgstr "Nombre de la parte de referencia del acreedor: el acreedor debe rellenar esta sección si realiza el cobro a favor de un tercero." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Name of the Debtor Reference Party: If you are making a payment in respect of an arrangement between" -msgstr "Nombre de la parte de referencia del deudor: Si realiza un pago como consecuencia de un acuerdo entre" - #. module: account_banking_mandate #: help:account.banking.mandate,state:0 -msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." -msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" +"Sólo se pueden usar mandatos validados en una línea de pago. Un mandato " +"cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate #: field:account.banking.mandate,partner_id:0 msgid "Partner" msgstr "Empresa" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Party on whose behalf the creditor collects the payment:" -msgstr "Parte en cuyo favor el acreedor realiza el cobro:" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_payment_line msgid "Payment Line" msgstr "Línea de pago" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Payment type:" -msgstr "Tipo de pago" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Person on whose behalf payment is made:" -msgstr "Persona en cuyo nombre se realiza el pago:" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Policyholder Service / Debtor:" -msgstr "Tomador del servicio / Deudor:" - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -403,27 +333,12 @@ msgstr "Referencia" msgid "Reference or Partner" msgstr "Referencia o cliente" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Reference:" -msgstr "Referencia:" - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form #: field:account.banking.mandate,payment_line_ids:0 msgid "Related Payment Lines" msgstr "Líneas de pago relacionadas" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" -msgstr "Orden de domiciliación de adeudo directo SEPA B2B" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "SEPA DIRECT DEBIT MANDATE" -msgstr "Orden de domiciliación de adeudo directo SEPA" - #. module: account_banking_mandate #: model:ir.ui.menu,name:account_banking_mandate.mandate_menu msgid "SEPA Direct Debit Mandates" @@ -440,9 +355,9 @@ msgid "Search Banking Mandates" msgstr "Buscar mandatos bancarios" #. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Service Provider / Creditor:" -msgstr "Entidad prestadora del servicio / Acreedor:" +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "Mandato SEPA" #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search @@ -461,29 +376,32 @@ msgid "Summary" msgstr "Resumen" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:75 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:80 #, python-format msgid "The date of signature of mandate '%s' is in the future !" msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:80 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:85 #, python-format -msgid "The mandate '%s' can't have a date of last debit before the date of signature." -msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" +"El mandato '%s' no puede tener una fecha de último cobro antes de la fecha " +"de firma." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/payment_line.py:51 #, python-format -msgid "The payment line with reference '%s' has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria '%s')." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "This mandate is only intended for business-to-business transactions. You are not entitled to a refund from your bank after your account has been debited, but you are entitled to request your bank not to debit your account up until the day on which the payment is due.\n" -" Please complete all the fields marked *." -msgstr "Esta orden de domiciliación está prevista para operaciones exclusivamente entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad le reembolse una vez que se haya realizado el cargo en cuenta, pero puede solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la fecha debida. Podrá obtener información detallada del procedimiento en su entidad financiera\n" -" Por favor rellene todos los campos marcados con un *." +msgid "" +"The payment line with reference '%s' has the bank account '%s' which is not " +"attached to the mandate '%s' (this mandate is attached to the bank account " +"'%s')." +msgstr "" +"La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no " +"está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria " +"'%s')." #. module: account_banking_mandate #: field:account.banking.mandate,unique_mandate_reference:0 @@ -495,11 +413,6 @@ msgstr "Referencia única del mandato" msgid "Unread Messages" msgstr "Mensajes sin leer" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "VAT:" -msgstr "NIF:" - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_search msgid "Valid" @@ -510,23 +423,162 @@ msgstr "Válido" msgid "Validate" msgstr "Validar" -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "Write any code number here which you wish to have quoted by your bank." -msgstr "Indique en este espacio cualquier número de código con el que desea que su entidad financiera le identifique." - #. module: account_banking_mandate #: view:account.banking.mandate:account_banking_mandate.view_mandate_form -msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" -msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "and another person (e.g. where you are paying the other person's bill) please write the other person's name here." -msgstr "y otra persona (por ejemplo, el pago de la factura de otra persona) indique el nombre de dicha persona en este espacio." - -#. module: account_banking_mandate -#: view:website:account_banking_mandate.account_banking_mandate_document -msgid "to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with the instructions from" -msgstr "a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a la entidad para efectuar los adeudos en su cuenta siguiendo las instrucciones de" - +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" +"Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " +"error. ¿Desea continuar?" + +#~ msgid "/ BIC:" +#~ msgstr "/ BIC:" + +#~ msgid "" +#~ "As part of your rights, you are entitled to a refund from your bank under " +#~ "the terms and conditions of your agreement with your bank.\n" +#~ " A refund must be claimed within 8 weeks starting " +#~ "from the date on which your account was debited." +#~ msgstr "" +#~ "Como parte de sus derechos, el deudor está legitimado al reembolso por su " +#~ "entidad en los términos y condiciones del contrato suscrito con la " +#~ "misma..\n" +#~ " La solicitud de reembolso deberá efectuarse " +#~ "dentro de las ocho semanas que siguen a la fecha de adeudo en cuenta." + +#~ msgid "Bank name:" +#~ msgstr "Banco:" + +#~ msgid "By signing this mandate form, you authorise (A)" +#~ msgstr "" +#~ "Mediante la firma de esta orden de domiciliación, el deudor autoriza a " +#~ "(A) " + +#~ msgid "Debtor identification code:" +#~ msgstr "Código del deudor:" + +#~ msgid "Description of contract." +#~ msgstr "Descripción del contrato." + +#~ msgid "" +#~ "Details regarding the underlying relationship between the Creditor and " +#~ "the Debtor - for information purposes only." +#~ msgstr "" +#~ "Información sobre la relación subyacente entre el acreedor y el deudor - " +#~ "a título meramente informativo." + +#~ msgid "" +#~ "For business users: write any code number here which you wish to have " +#~ "quoted by your bank." +#~ msgstr "" +#~ "Para usuarios empresas: Indique en este espacio cualquier número de " +#~ "código con el que desea que su entidad financiera le identifique." + +#~ msgid "IBAN:" +#~ msgstr "IBAN:" + +#~ msgid "Identification code of the Creditor Reference Party." +#~ msgstr "Código de identificación de la parte de referencia del acreedor" + +#~ msgid "Identification code of the Debtor Reference Party." +#~ msgstr "Código de identificación de la parte de referencia del deudor" + +#~ msgid "Identification number of the underlying contract." +#~ msgstr "Número de identificación del contrato subyacente" + +#~ msgid "Identifier:" +#~ msgstr "Identificador:" + +#~ msgid "If you are paying on your own behalf, leave blank." +#~ msgstr "" +#~ "Si realiza el pago en su propio nombre e interés, deje este espacio en " +#~ "blanco." + +#~ msgid "In respect of the contract:" +#~ msgstr "Respecto al contrato:" + +#~ msgid "" +#~ "Location and sign: _______________________, at ______ from ____________ " +#~ "from" +#~ msgstr "" +#~ "Lugar y fecha de la firma: _______________________, a ______ de " +#~ "____________ de" + +#~ msgid "" +#~ "Name of the Creditor Reference Party: Creditor must complete this section " +#~ "if collecting payment on behalf of another party." +#~ msgstr "" +#~ "Nombre de la parte de referencia del acreedor: el acreedor debe rellenar " +#~ "esta sección si realiza el cobro a favor de un tercero." + +#~ msgid "" +#~ "Name of the Debtor Reference Party: If you are making a payment in " +#~ "respect of an arrangement between" +#~ msgstr "" +#~ "Nombre de la parte de referencia del deudor: Si realiza un pago como " +#~ "consecuencia de un acuerdo entre" + +#~ msgid "Party on whose behalf the creditor collects the payment:" +#~ msgstr "Parte en cuyo favor el acreedor realiza el cobro:" + +#~ msgid "Payment type:" +#~ msgstr "Tipo de pago" + +#~ msgid "Person on whose behalf payment is made:" +#~ msgstr "Persona en cuyo nombre se realiza el pago:" + +#~ msgid "Policyholder Service / Debtor:" +#~ msgstr "Tomador del servicio / Deudor:" + +#~ msgid "Reference:" +#~ msgstr "Referencia:" + +#~ msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" +#~ msgstr "Orden de domiciliación de adeudo directo SEPA B2B" + +#~ msgid "SEPA DIRECT DEBIT MANDATE" +#~ msgstr "Orden de domiciliación de adeudo directo SEPA" + +#~ msgid "Service Provider / Creditor:" +#~ msgstr "Entidad prestadora del servicio / Acreedor:" + +#~ msgid "" +#~ "This mandate is only intended for business-to-business transactions. You " +#~ "are not entitled to a refund from your bank after your account has been " +#~ "debited, but you are entitled to request your bank not to debit your " +#~ "account up until the day on which the payment is due.\n" +#~ " Please complete all the fields marked *." +#~ msgstr "" +#~ "Esta orden de domiciliación está prevista para operaciones exclusivamente " +#~ "entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad " +#~ "le reembolse una vez que se haya realizado el cargo en cuenta, pero puede " +#~ "solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la " +#~ "fecha debida. Podrá obtener información detallada del procedimiento en su " +#~ "entidad financiera\n" +#~ " Por favor rellene todos los campos marcados con " +#~ "un *." + +#~ msgid "VAT:" +#~ msgstr "NIF:" + +#~ msgid "" +#~ "Write any code number here which you wish to have quoted by your bank." +#~ msgstr "" +#~ "Indique en este espacio cualquier número de código con el que desea que " +#~ "su entidad financiera le identifique." + +#~ msgid "" +#~ "and another person (e.g. where you are paying the other person's bill) " +#~ "please write the other person's name here." +#~ msgstr "" +#~ "y otra persona (por ejemplo, el pago de la factura de otra persona) " +#~ "indique el nombre de dicha persona en este espacio." + +#~ msgid "" +#~ "to send instructions to your bank to debit your account and (B) your bank " +#~ "to debit your account in accordance with the instructions from" +#~ msgstr "" +#~ "a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a " +#~ "la entidad para efectuar los adeudos en su cuenta siguiendo las " +#~ "instrucciones de" diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 233ea3b35e3..6c969ed00b5 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -35,6 +35,12 @@ def _get_states(self): ('expired', 'Expired'), ('cancel', 'Cancelled')] + format = fields.Selection( + [('basic', _('Basic Mandate'))], + default='basic', + required=True, + string='Mandate Format', + ) partner_bank_id = fields.Many2one( comodel_name='res.partner.bank', string='Bank Account', track_visibility='onchange') @@ -66,33 +72,38 @@ def _get_states(self): 'unique(unique_mandate_reference, company_id)', 'A Mandate with the same reference already exists for this company !')] - @api.one + @api.multi @api.constrains('signature_date', 'last_debit_date') def _check_dates(self): - if (self.signature_date and - self.signature_date > fields.Date.context_today(self)): - raise exceptions.Warning( - _("The date of signature of mandate '%s' is in the future !") - % self.unique_mandate_reference) - if (self.signature_date and self.last_debit_date and - self.signature_date > self.last_debit_date): - raise exceptions.Warning( - _("The mandate '%s' can't have a date of last debit before " - "the date of signature.") % self.unique_mandate_reference) + for mandate in self: + if (mandate.signature_date and + mandate.signature_date > fields.Date.context_today( + mandate)): + raise exceptions.Warning( + _("The date of signature of mandate '%s' " + "is in the future !") + % mandate.unique_mandate_reference) + if (mandate.signature_date and mandate.last_debit_date and + mandate.signature_date > mandate.last_debit_date): + raise exceptions.Warning( + _("The mandate '%s' can't have a date of last debit " + "before the date of signature." + ) % mandate.unique_mandate_reference) - @api.one + @api.multi @api.constrains('state', 'partner_bank_id') def _check_valid_state(self): - if self.state == 'valid': - if not self.signature_date: - raise exceptions.Warning( - _("Cannot validate the mandate '%s' without a date of " - "signature.") % self.unique_mandate_reference) - if not self.partner_bank_id: - raise exceptions.Warning( - _("Cannot validate the mandate '%s' because it is not " - "attached to a bank account.") % - self.unique_mandate_reference) + for mandate in self: + if mandate.state == 'valid': + if not mandate.signature_date: + raise exceptions.Warning( + _("Cannot validate the mandate '%s' without a date of " + "signature.") % mandate.unique_mandate_reference) + if not mandate.partner_bank_id: + raise exceptions.Warning( + _("Cannot validate the mandate '%s' because it is not " + "attached to a bank account.") % + mandate.unique_mandate_reference) @api.model def create(self, vals=None): @@ -101,10 +112,11 @@ def create(self, vals=None): self.env['ir.sequence'].next_by_code('account.banking.mandate') return super(AccountBankingMandate, self).create(vals) - @api.one + @api.multi @api.onchange('partner_bank_id') def mandate_partner_bank_change(self): - self.partner_id = self.partner_bank_id.partner_id + for mandate in self: + mandate.partner_id = mandate.partner_bank_id.partner_id @api.multi def validate(self): diff --git a/account_banking_mandate/reports/account_banking_mandate.xml b/account_banking_mandate/reports/account_banking_mandate.xml deleted file mode 100644 index 913da0bd3b9..00000000000 --- a/account_banking_mandate/reports/account_banking_mandate.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/account_banking_mandate/reports/account_banking_mandate_view.xml b/account_banking_mandate/reports/account_banking_mandate_view.xml deleted file mode 100644 index 49fa21a2198..00000000000 --- a/account_banking_mandate/reports/account_banking_mandate_view.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 2c66bd06c2b..f91c35bd3ee 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -12,7 +12,7 @@ view.mandate.form account.banking.mandate -
+
+ + + + + + diff --git a/account_banking_mandate/views/res_partner_bank_view.xml b/account_banking_mandate/views/res_partner_bank_view.xml index 572fa766e65..60f9cbce117 100644 --- a/account_banking_mandate/views/res_partner_bank_view.xml +++ b/account_banking_mandate/views/res_partner_bank_view.xml @@ -1,6 +1,6 @@ @@ -12,8 +12,8 @@ res.partner.bank - - + + @@ -26,23 +26,10 @@ - + - - - mandate.partner.form - res.partner - - - - - - - - From aa355a83fc696cd758e1a70ca6cab26ed1fc9ce6 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 9 Apr 2016 02:15:34 -0400 Subject: [PATCH 014/118] OCA Transbot updated translations from Transifex --- account_banking_mandate/i18n/es.po | 516 ++++++++++---------------- account_banking_mandate/i18n/fr.po | 462 +++++++++++++++++++++++ account_banking_mandate/i18n/nb_NO.po | 462 +++++++++++++++++++++++ account_banking_mandate/i18n/nl.po | 479 ++++++++++++++++++++++++ account_banking_mandate/i18n/pt_BR.po | 463 +++++++++++++++++++++++ account_banking_mandate/i18n/sl.po | 467 +++++++++++++++++++++++ 6 files changed, 2534 insertions(+), 315 deletions(-) create mode 100644 account_banking_mandate/i18n/fr.po create mode 100644 account_banking_mandate/i18n/nb_NO.po create mode 100644 account_banking_mandate/i18n/nl.po create mode 100644 account_banking_mandate/i18n/pt_BR.po create mode 100644 account_banking_mandate/i18n/sl.po diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index c69519c8dc7..767862ae169 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -1,44 +1,34 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_banking_mandate -# +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-05 20:09+0000\n" -"PO-Revision-Date: 2016-04-05 22:12+0100\n" -"Last-Translator: Sergio Teruel \n" -"Language-Team: \n" -"Language: es_ES\n" +"POT-Creation-Date: 2016-07-01 19:28+0000\n" +"PO-Revision-Date: 2016-07-01 19:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action msgid "" -"

\n" -" Click to create a new Banking Mandate.\n" -"

\n" -" A Banking Mandate is a document signed by your customer that gives " -"you the autorization to do one or several operations on his bank account.\n" -"

\n" -" " -msgstr "" -"

\n" -" Pulse para crear un nuevo mandato bancario.\n" -"

\n" -" Un mandato bancario es un documento firmado por su cliente que le da " -"la autorización para hacer una o varias operaciones en su cuenta bancaria.\n" -"

\n" -" " +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 -msgid "A Mandate with the same reference already exists for this company !" -msgstr "Ya existe un mandato con la misma referencia para esta compañía" +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_banking_mandate @@ -46,12 +36,26 @@ msgid "A generic banking mandate" msgstr "Un mandato bancario genérico" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Back to Draft" msgstr "Volver a borrador" #. module: account_banking_mandate -#: field:account.banking.mandate,partner_bank_id:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id msgid "Bank Account" msgstr "Cuenta bancaria" @@ -66,59 +70,42 @@ msgid "Bank Payment Lines" msgstr "Líneas de pago bancario" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Banking Mandate" msgstr "Mandato bancario" -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_cancel -msgid "Banking Mandate Cancelled" -msgstr "Mandato bancario cancelado" - -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_valid -msgid "Banking Mandate Validated" -msgstr "Mandato bancario validado" - -#. module: account_banking_mandate -#: model:mail.message.subtype,description:account_banking_mandate.mandate_expired -msgid "Banking Mandate has Expired" -msgstr "El mandato bancario ha expirado" - #. module: account_banking_mandate #: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu msgid "Banking Mandates" msgstr "Mandatos bancarios" #. module: account_banking_mandate -#: help:res.partner.bank,mandate_ids:0 +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids msgid "" -"Banking mandates represents an authorization that the bank account owner " -"gives to a company for a specific operation" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." msgstr "" -"Los mandatos bancarios representan una autorización que el propietario de la " -"cuenta bancaria da a la compañía para un operación específica" #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:39 -#, python-format msgid "Basic Mandate" msgstr "Mandato básico" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Cancel" msgstr "Cancelar" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:98 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -128,184 +115,231 @@ msgstr "" "asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:94 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." #. module: account_banking_mandate -#: field:account.banking.mandate,company_id:0 +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id msgid "Company" msgstr "Compañía" #. module: account_banking_mandate -#: field:account.banking.mandate,create_uid:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" msgstr "Creado por" #. module: account_banking_mandate -#: field:account.banking.mandate,create_date:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date msgid "Created on" msgstr "Creado en" #. module: account_banking_mandate -#: view:res.partner:account_banking_mandate.mandate_partner_form -#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_tree -msgid "DD Mandates" -msgstr "Mandatos bancarios" - -#. module: account_banking_mandate -#: field:account.banking.mandate,signature_date:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date msgid "Date of Signature of the Mandate" msgstr "Fecha de la firma del mandato" #. module: account_banking_mandate -#: field:account.banking.mandate,last_debit_date:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date msgid "Date of the Last Debit" msgstr "Fecha del último cobro" #. module: account_banking_mandate -#: help:account.banking.mandate,message_last_post:0 +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post msgid "Date of the last message posted on the record." msgstr "Fecha del último mensaje publicado en el registro." #. module: account_banking_mandate -#: field:account.invoice,mandate_id:0 field:payment.line,mandate_id:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id msgid "Direct Debit Mandate" msgstr "Mandato de adeudo directo" #. module: account_banking_mandate -#: view:res.partner.bank:account_banking_mandate.mandate_partner_bank_form -#: field:res.partner.bank,mandate_ids:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form msgid "Direct Debit Mandates" msgstr "Mandatos de adeudo directo" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Draft" msgstr "Borrador" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Expired" msgstr "Expirado" #. module: account_banking_mandate -#: field:account.banking.mandate,message_follower_ids:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids msgid "Followers" msgstr "Seguidores" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "Formato" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" msgstr "Agrupar por" #. module: account_banking_mandate -#: help:account.banking.mandate,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." -msgstr "" -"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está " -"directamente en formato html para ser insertado en vistas kanban." - -#. module: account_banking_mandate -#: field:account.banking.mandate,id:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id msgid "ID" msgstr "ID" #. module: account_banking_mandate -#: help:account.banking.mandate,message_unread:0 +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread msgid "If checked new messages require your attention." msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "Factura" #. module: account_banking_mandate -#: field:account.banking.mandate,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" #. module: account_banking_mandate -#: field:account.banking.mandate,message_last_post:0 +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post msgid "Last Message Date" msgstr "Fecha del último mensaje" #. module: account_banking_mandate -#: field:account.banking.mandate,write_uid:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: account_banking_mandate -#: field:account.banking.mandate,write_date:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_banking_mandate -#: view:bank.payment.line:account_banking_mandate.bank_payment_line_tree -#: view:payment.order:account_banking_mandate.view_mandate_payment_order_form +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree msgid "Mandate" msgstr "Mandato SEPA" #. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_cancel -msgid "Mandate Cancelled" -msgstr "Mandato cancelado" - -#. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_expired -msgid "Mandate Expired" -msgstr "Mandato expirado" - -#. module: account_banking_mandate -#: field:account.banking.mandate,format:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format msgid "Mandate Format" msgstr "Formato del mandato" #. module: account_banking_mandate -#: model:mail.message.subtype,name:account_banking_mandate.mandate_valid -msgid "Mandate Validated" -msgstr "Mandato validado" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format -msgid "Mandate should be in cancel state" -msgstr "El mandato debe estar en estado cancelado" +msgid "Mandate should be in cancel state." +msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:128 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 #, python-format -msgid "Mandate should be in draft or valid state" -msgstr "El mandato debe estar en estado borrador o validado" +msgid "Mandate should be in draft or valid state." +msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 #, python-format -msgid "Mandate should be in draft state" -msgstr "El mandato debe estar en estado borrador" +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" #. module: account_banking_mandate -#: field:account.banking.mandate,message_ids:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids msgid "Messages" msgstr "Mensajes" #. module: account_banking_mandate -#: help:account.banking.mandate,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" #. module: account_banking_mandate -#: help:account.banking.mandate,state:0 +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." @@ -314,43 +348,44 @@ msgstr "" "cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate -#: field:account.banking.mandate,partner_id:0 +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Empresa" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_payment_line -msgid "Payment Line" -msgstr "Línea de pago" +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" msgstr "Referencia" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Reference or Partner" msgstr "Referencia o cliente" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form -#: field:account.banking.mandate,payment_line_ids:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Líneas de pago relacionadas" #. module: account_banking_mandate -#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu -msgid "SEPA Direct Debit Mandates" -msgstr "Mandatos de adeudo directo SEPA" - -#. module: account_banking_mandate -#: field:account.banking.mandate,scan:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan msgid "Scan of the Mandate" msgstr "Escaneado del mandato" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Search Banking Mandates" msgstr "Buscar mandatos bancarios" @@ -360,29 +395,29 @@ msgid "Sepa Mandate" msgstr "Mandato SEPA" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search -#: view:account.banking.mandate:account_banking_mandate.view_mandate_tree +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Signature Date" msgstr "Fecha de firma" #. module: account_banking_mandate -#: field:account.banking.mandate,state:0 -msgid "Status" -msgstr "Estado" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" #. module: account_banking_mandate -#: field:account.banking.mandate,message_summary:0 -msgid "Summary" -msgstr "Resumen" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:80 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 #, python-format -msgid "The date of signature of mandate '%s' is in the future !" -msgstr "La fecha de firma del mandato '%s' no puede ser superior a la actual" +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:85 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -392,193 +427,44 @@ msgstr "" "de firma." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/payment_line.py:51 +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 #, python-format msgid "" -"The payment line with reference '%s' has the bank account '%s' which is not " -"attached to the mandate '%s' (this mandate is attached to the bank account " -"'%s')." +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" -"La línea de pago con referencia '%s' tiene la cuenta bancaria '%s', que no " -"está puesta en el mandato '%s' (este mandato tiene como cuenta bancaria " -"'%s')." #. module: account_banking_mandate -#: field:account.banking.mandate,unique_mandate_reference:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" msgstr "Referencia única del mandato" #. module: account_banking_mandate -#: field:account.banking.mandate,message_unread:0 +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread msgid "Unread Messages" msgstr "Mensajes sin leer" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_search +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Valid" msgstr "Válido" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Validate" msgstr "Validar" #. module: account_banking_mandate -#: view:account.banking.mandate:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" msgstr "" "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " "error. ¿Desea continuar?" - -#~ msgid "/ BIC:" -#~ msgstr "/ BIC:" - -#~ msgid "" -#~ "As part of your rights, you are entitled to a refund from your bank under " -#~ "the terms and conditions of your agreement with your bank.\n" -#~ " A refund must be claimed within 8 weeks starting " -#~ "from the date on which your account was debited." -#~ msgstr "" -#~ "Como parte de sus derechos, el deudor está legitimado al reembolso por su " -#~ "entidad en los términos y condiciones del contrato suscrito con la " -#~ "misma..\n" -#~ " La solicitud de reembolso deberá efectuarse " -#~ "dentro de las ocho semanas que siguen a la fecha de adeudo en cuenta." - -#~ msgid "Bank name:" -#~ msgstr "Banco:" - -#~ msgid "By signing this mandate form, you authorise (A)" -#~ msgstr "" -#~ "Mediante la firma de esta orden de domiciliación, el deudor autoriza a " -#~ "(A) " - -#~ msgid "Debtor identification code:" -#~ msgstr "Código del deudor:" - -#~ msgid "Description of contract." -#~ msgstr "Descripción del contrato." - -#~ msgid "" -#~ "Details regarding the underlying relationship between the Creditor and " -#~ "the Debtor - for information purposes only." -#~ msgstr "" -#~ "Información sobre la relación subyacente entre el acreedor y el deudor - " -#~ "a título meramente informativo." - -#~ msgid "" -#~ "For business users: write any code number here which you wish to have " -#~ "quoted by your bank." -#~ msgstr "" -#~ "Para usuarios empresas: Indique en este espacio cualquier número de " -#~ "código con el que desea que su entidad financiera le identifique." - -#~ msgid "IBAN:" -#~ msgstr "IBAN:" - -#~ msgid "Identification code of the Creditor Reference Party." -#~ msgstr "Código de identificación de la parte de referencia del acreedor" - -#~ msgid "Identification code of the Debtor Reference Party." -#~ msgstr "Código de identificación de la parte de referencia del deudor" - -#~ msgid "Identification number of the underlying contract." -#~ msgstr "Número de identificación del contrato subyacente" - -#~ msgid "Identifier:" -#~ msgstr "Identificador:" - -#~ msgid "If you are paying on your own behalf, leave blank." -#~ msgstr "" -#~ "Si realiza el pago en su propio nombre e interés, deje este espacio en " -#~ "blanco." - -#~ msgid "In respect of the contract:" -#~ msgstr "Respecto al contrato:" - -#~ msgid "" -#~ "Location and sign: _______________________, at ______ from ____________ " -#~ "from" -#~ msgstr "" -#~ "Lugar y fecha de la firma: _______________________, a ______ de " -#~ "____________ de" - -#~ msgid "" -#~ "Name of the Creditor Reference Party: Creditor must complete this section " -#~ "if collecting payment on behalf of another party." -#~ msgstr "" -#~ "Nombre de la parte de referencia del acreedor: el acreedor debe rellenar " -#~ "esta sección si realiza el cobro a favor de un tercero." - -#~ msgid "" -#~ "Name of the Debtor Reference Party: If you are making a payment in " -#~ "respect of an arrangement between" -#~ msgstr "" -#~ "Nombre de la parte de referencia del deudor: Si realiza un pago como " -#~ "consecuencia de un acuerdo entre" - -#~ msgid "Party on whose behalf the creditor collects the payment:" -#~ msgstr "Parte en cuyo favor el acreedor realiza el cobro:" - -#~ msgid "Payment type:" -#~ msgstr "Tipo de pago" - -#~ msgid "Person on whose behalf payment is made:" -#~ msgstr "Persona en cuyo nombre se realiza el pago:" - -#~ msgid "Policyholder Service / Debtor:" -#~ msgstr "Tomador del servicio / Deudor:" - -#~ msgid "Reference:" -#~ msgstr "Referencia:" - -#~ msgid "SEPA BUSINESS-TO-BUSINESS DIRECT DEBIT MANDATE" -#~ msgstr "Orden de domiciliación de adeudo directo SEPA B2B" - -#~ msgid "SEPA DIRECT DEBIT MANDATE" -#~ msgstr "Orden de domiciliación de adeudo directo SEPA" - -#~ msgid "Service Provider / Creditor:" -#~ msgstr "Entidad prestadora del servicio / Acreedor:" - -#~ msgid "" -#~ "This mandate is only intended for business-to-business transactions. You " -#~ "are not entitled to a refund from your bank after your account has been " -#~ "debited, but you are entitled to request your bank not to debit your " -#~ "account up until the day on which the payment is due.\n" -#~ " Please complete all the fields marked *." -#~ msgstr "" -#~ "Esta orden de domiciliación está prevista para operaciones exclusivamente " -#~ "entre empresas y/o autónomos. El deudor no tiene derecho a que su entidad " -#~ "le reembolse una vez que se haya realizado el cargo en cuenta, pero puede " -#~ "solicitar a su entidad que no efectúe el adeudo en la cuenta hasta la " -#~ "fecha debida. Podrá obtener información detallada del procedimiento en su " -#~ "entidad financiera\n" -#~ " Por favor rellene todos los campos marcados con " -#~ "un *." - -#~ msgid "VAT:" -#~ msgstr "NIF:" - -#~ msgid "" -#~ "Write any code number here which you wish to have quoted by your bank." -#~ msgstr "" -#~ "Indique en este espacio cualquier número de código con el que desea que " -#~ "su entidad financiera le identifique." - -#~ msgid "" -#~ "and another person (e.g. where you are paying the other person's bill) " -#~ "please write the other person's name here." -#~ msgstr "" -#~ "y otra persona (por ejemplo, el pago de la factura de otra persona) " -#~ "indique el nombre de dicha persona en este espacio." - -#~ msgid "" -#~ "to send instructions to your bank to debit your account and (B) your bank " -#~ "to debit your account in accordance with the instructions from" -#~ msgstr "" -#~ "a enviar órdenes a la entidad del deudor para adeudar su cuenta y (B) a " -#~ "la entidad para efectuar los adeudos en su cuenta siguiendo las " -#~ "instrucciones de" diff --git a/account_banking_mandate/i18n/fr.po b/account_banking_mandate/i18n/fr.po new file mode 100644 index 00000000000..1790d88ac56 --- /dev/null +++ b/account_banking_mandate/i18n/fr.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-01 19:28+0000\n" +"PO-Revision-Date: 2016-07-01 19:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Valider" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/nb_NO.po b/account_banking_mandate/i18n/nb_NO.po new file mode 100644 index 00000000000..80953303610 --- /dev/null +++ b/account_banking_mandate/i18n/nb_NO.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-30 07:37+0000\n" +"PO-Revision-Date: 2016-07-30 07:37+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "Handling påkrevd" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Tilbake til Drøftinger" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Drøfting" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "Følgere" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "Følgere (Kanaler)" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "Følgere (Partnere)" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "Hvis valgt vil nye meldinger kreve din oppmerksomhet" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "Hvis valgt, vil nye meldinger kreve din oppmerksomhet" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "Er en følger." + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "Journalgjenstand" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "Dato for siste melding" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "Sist modifisert den." + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "Meldinger" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "Antall handlinger" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Antall meldinger som krever handling" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "Antall uleste meldinger" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "Tilstand" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Status" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "Uleste meldinger" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/nl.po b/account_banking_mandate/i18n/nl.po new file mode 100644 index 00000000000..f5603bd9a1d --- /dev/null +++ b/account_banking_mandate/i18n/nl.po @@ -0,0 +1,479 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# Erwin van der Ploeg , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-22 23:52+0000\n" +"PO-Revision-Date: 2016-07-22 23:52+0000\n" +"Last-Translator: Erwin van der Ploeg , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" +"Een bankmandaat is een document ondertekend door uw klant die autorisatie " +"geeft om één of meerdere acties uit te voeren op de bankrekening van de " +"klant." + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "Een mandaat met dezelfde naam bestaat al met deze code." + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "Een generiek bank mandaat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "Actie nodig" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" +"Activeer deze optie wanneer bij de betaalwijze uw klant verplicht is om een " +"incasso mandaat met uw bedrijf te ondertekenen." + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Terug naar concept" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Bankrekeningen" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bankrekeningen" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Bank betaalregels" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "Bank mandaat" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "Bank mandaten" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" +"Een bank mandaat wordt door de bankrekening eigenaar\n" +" gegeven aan een bedrijf om een specifieke actie uit te kunnen voeren. " + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "Standaard mandaat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Geannuleerd" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" +"Kan mandate '%s' niet valideren omdat deze niet aan een bankrekening " +"gekoppeld is. " + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "Kan mandaat '%s' niet goedkeuren zonder een datum of handtekening." + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "Klik voor het aanmaken van een neuw mandaat." + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "Datum van ondertekening mandaat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "Datum van laatste debet" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "Datum van het laatste bericht op het record." + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "Incasso mandaat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "Incasso mandaten" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "Weergave naam" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Concept" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "Vervallen" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "Volgers" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "Volgers (Kanalen)" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "Volgers (Relaties)" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "Formaat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "Groepeer op" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "Indien aangevinkt vraagt een bericht om uw aandacht." + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "Indien aangevinkt vraagt een bericht om uw aandacht." + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "Is een volger" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "Boekingsregel" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "Laatste berichten datum" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "Mandaat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "Mandaat formaat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "Bankrekening verplicht" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "Mandaat moet in de 'annulleer' status zijn." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "Mandaat moet in de 'geldig' of 'concept' status zijn." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "Mandaat moet in de 'concept' status zijn." + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "Mandaten" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "Mandaten" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "Berichten" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "Ontbrekende mandaat op betaalregel %s" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "Aantal acties" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "Aantal mandaten" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Aantal berichten welke vragen om een actie" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "Aantal ongelezen berichten" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" +"Alleen gevalideerde bank mandaten kunnen worden gebruikt in betaalregels. " +"Een geannuleerd mandaat is een mandaat dat geannuleerd is door de klant." + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "Betaalregels" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "Betaalwijzes" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "Referentie" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "Referentie of relatie" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "Gekoppelde betaalregels" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "Scan van het mandaat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "Zoek bank mandaten" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "Sepa mandaat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "Datum handtekening" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "Staat/Provincie" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Status" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "De datum van de handtekening van mandaat '%s' is in de toekomts!" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" +"Mandaat '%s' kan geen datum van laatste debet hebben coor de datum van " +"ondertekenen." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" +"Betaalregelnummer %s heeft een bankrekeningnummer '%s' die niet gekoppeld " +"is aan mandaat '%s' (dit mandaat is gekoppeld aan bankrekeningnummer '%s')." + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "Unieke madaat referentie" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "Ongelezen berichten" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "Ongelezen berichten teller" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "Geldig" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Bevestig" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" +"Een mandaat moet alleen teruggezet worden naar concept wanneer u deze per " +"ongeluk heeft geannuleerd. Wilt u verdergaan? " diff --git a/account_banking_mandate/i18n/pt_BR.po b/account_banking_mandate/i18n/pt_BR.po new file mode 100644 index 00000000000..5314863c282 --- /dev/null +++ b/account_banking_mandate/i18n/pt_BR.po @@ -0,0 +1,463 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-01 19:28+0000\n" +"PO-Revision-Date: 2016-07-01 19:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "Uma ordem bancária genérica" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Voltar para provisório" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Conta bancária" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Contas bancárias" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Linhas de pagamento bancária" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "Ordem Bancária" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "Ordens bancárias" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Cancelado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" +"Não pode validar a ordem '%s' porque não está anexada a conta bancária." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "Não pode validar a ordem '%s' sem uma data de assinatura." + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "Data de assinatura da ordem" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "Data do último débito" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "Data da última mensagem postada no registro" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Provisório" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "Expirado" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "Se marcado novas mensagens requerem sua atenção." + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "Data da última mensagem" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "Parceiro" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "Linhas relacionadas do pagamento" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Status" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Validar" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/sl.po b/account_banking_mandate/i18n/sl.po new file mode 100644 index 00000000000..7a0d1d46b24 --- /dev/null +++ b/account_banking_mandate/i18n/sl.po @@ -0,0 +1,467 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-01 19:28+0000\n" +"PO-Revision-Date: 2016-07-01 19:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "Generični bančni mandat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Vrni v osnutek" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Bančni račun" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bančni računi" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Postavke bančnih plačil" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "Bančni mandat" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "Bančni mandati" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "Osnovni mandat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Preklicano" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "Mandata '%s' ni mogoče overiti, ker ni pripet bančnemu računu." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "Mandata '%s' ni mogoče overiti brez datuma podpisa." + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Družba" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "Datum podpisa mandata" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "Datum zadnje obremenitve" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "Datum objave zadnjega sporočila na zapisu." + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "Mandat za direktne obremenitve" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "Mandati za direktne obremenitve" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Osnutek" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "Pretečeni" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "Sledilci" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "Format" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "Zfruži po" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "Ko je označeno, zahtevajo vašo pozornost nova sporočila." + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "Datum zadnjega sporočila" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "Mandat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "Format mandata" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "Sporočila" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" +"V postavki plačila se lahko uporabijo le veljavni mandati. Preklican mandat " +"je mandat, ki ga je kupec preklical." + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "Sklic" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "Sklic ali partner" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "Povezane plačilne postavke" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "Sken mandata" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "Iskanje bančnih mandatov" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "SEPA mandat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "Datum podpisa" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Status" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" +"Mandat '%s' ne sme imeti datuma zadnje obremenitve pred datumom podpisa." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "Unikatni sklic mandata" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "Veljaven" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Potrdi" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" +"Mandat ponastavite v osnutek le, če ste ga pomotoma preklicali. Želite " +"nadaljevati?" From 28bf4727a890c52fa4653acdd2ff7a6ede39a993 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Thu, 20 Oct 2016 01:41:41 +0200 Subject: [PATCH 015/118] Port almost all modules to v10 (#305) Port almost all modules to v10 * Update to EPC Rulebook v9.2 that start to apply on 2016-11-20 (bug #300) --- .../{__openerp__.py => __manifest__.py} | 7 ++-- .../data/mandate_reference_sequence.xml | 6 ++-- .../models/account_banking_mandate.py | 4 +-- .../models/account_invoice.py | 2 +- .../models/account_move_line.py | 2 +- .../models/account_payment_line.py | 4 +-- .../models/account_payment_method.py | 2 +- .../models/bank_payment_line.py | 2 +- account_banking_mandate/models/res_partner.py | 2 +- .../models/res_partner_bank.py | 2 +- .../security/mandate_security.xml | 12 +++---- .../test/banking_mandate.yml | 35 ------------------- account_banking_mandate/tests/__init__.py | 3 ++ account_banking_mandate/tests/test_mandate.py | 22 ++++++++++++ .../views/account_banking_mandate_view.xml | 11 +++--- .../views/account_invoice_view.xml | 15 ++++---- .../views/account_move_line.xml | 11 +++--- .../views/account_payment_line.xml | 4 +-- .../views/account_payment_method.xml | 6 ++-- .../views/bank_payment_line_view.xml | 12 +++---- account_banking_mandate/views/res_partner.xml | 13 ++++--- .../views/res_partner_bank_view.xml | 13 ++++--- 22 files changed, 81 insertions(+), 109 deletions(-) rename account_banking_mandate/{__openerp__.py => __manifest__.py} (85%) delete mode 100644 account_banking_mandate/test/banking_mandate.yml create mode 100644 account_banking_mandate/tests/__init__.py create mode 100644 account_banking_mandate/tests/test_mandate.py diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__manifest__.py similarity index 85% rename from account_banking_mandate/__openerp__.py rename to account_banking_mandate/__manifest__.py index 864781e95f1..a7d0a871f98 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__manifest__.py @@ -1,16 +1,16 @@ # -*- coding: utf-8 -*- # © 2014 Compassion CH - Cyril Sester -# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# © 2014 Tecnativa - Pedro M. Baeza # © 2015-2016 Akretion - Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'license': 'AGPL-3', 'author': "Compassion CH, " - "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "Tecnativa, " "Akretion, " "Odoo Community Association (OCA)", 'website': 'https://github.com/OCA/bank-payment', @@ -31,6 +31,5 @@ 'security/mandate_security.xml', 'security/ir.model.access.csv', ], - 'test': ['test/banking_mandate.yml'], 'installable': True, } diff --git a/account_banking_mandate/data/mandate_reference_sequence.xml b/account_banking_mandate/data/mandate_reference_sequence.xml index e3df030519d..0b78fddfb92 100644 --- a/account_banking_mandate/data/mandate_reference_sequence.xml +++ b/account_banking_mandate/data/mandate_reference_sequence.xml @@ -1,6 +1,5 @@ - - + @@ -11,5 +10,4 @@ - - + diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index cd5958d7c4c..8848096065a 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -4,8 +4,8 @@ # © 2015-2016 Akretion - Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api, _ -from openerp.exceptions import UserError, ValidationError +from odoo import models, fields, api, _ +from odoo.exceptions import UserError, ValidationError class AccountBankingMandate(models.Model): diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index d821ee3e218..d9561ff8ec3 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -5,7 +5,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api +from odoo import models, fields, api class AccountInvoice(models.Model): diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index 1ededbb6ad5..52aaef2c748 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -2,7 +2,7 @@ # © 2016 Akretion (http://www.akretion.com/) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api +from odoo import models, fields, api class AccountMoveLine(models.Model): diff --git a/account_banking_mandate/models/account_payment_line.py b/account_banking_mandate/models/account_payment_line.py index 4650b2f9819..61969d93d35 100644 --- a/account_banking_mandate/models/account_payment_line.py +++ b/account_banking_mandate/models/account_payment_line.py @@ -4,8 +4,8 @@ # © 2015-2016 Akretion - Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api, _ -from openerp.exceptions import ValidationError, UserError +from odoo import models, fields, api, _ +from odoo.exceptions import ValidationError, UserError class AccountPaymentLine(models.Model): diff --git a/account_banking_mandate/models/account_payment_method.py b/account_banking_mandate/models/account_payment_method.py index 88436521068..4bf1f4309bf 100644 --- a/account_banking_mandate/models/account_payment_method.py +++ b/account_banking_mandate/models/account_payment_method.py @@ -2,7 +2,7 @@ # © 2016 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields +from odoo import models, fields class AccountPaymentMethod(models.Model): diff --git a/account_banking_mandate/models/bank_payment_line.py b/account_banking_mandate/models/bank_payment_line.py index 8dd2cbdc81d..3d0d1b3295c 100644 --- a/account_banking_mandate/models/bank_payment_line.py +++ b/account_banking_mandate/models/bank_payment_line.py @@ -4,7 +4,7 @@ # © 2015-2016 Akretion - Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api +from odoo import models, fields, api class BankPaymentLine(models.Model): diff --git a/account_banking_mandate/models/res_partner.py b/account_banking_mandate/models/res_partner.py index 3c1fba967f6..bcc7b3dd74d 100644 --- a/account_banking_mandate/models/res_partner.py +++ b/account_banking_mandate/models/res_partner.py @@ -2,7 +2,7 @@ # © 2016 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api +from odoo import models, fields, api class ResPartner(models.Model): diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py index 028a1ddb8fe..c693ab280df 100644 --- a/account_banking_mandate/models/res_partner_bank.py +++ b/account_banking_mandate/models/res_partner_bank.py @@ -3,7 +3,7 @@ # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields +from odoo import models, fields class ResPartnerBank(models.Model): diff --git a/account_banking_mandate/security/mandate_security.xml b/account_banking_mandate/security/mandate_security.xml index 5ca991c0bdc..2b88bb12bd5 100644 --- a/account_banking_mandate/security/mandate_security.xml +++ b/account_banking_mandate/security/mandate_security.xml @@ -1,13 +1,11 @@ + - - Banking Mandate multi-company @@ -19,5 +17,5 @@ - - + + diff --git a/account_banking_mandate/test/banking_mandate.yml b/account_banking_mandate/test/banking_mandate.yml deleted file mode 100644 index 0d09698af4d..00000000000 --- a/account_banking_mandate/test/banking_mandate.yml +++ /dev/null @@ -1,35 +0,0 @@ -- - In order to test mandate, I create a partner with a bank account. - Then, I create a mandate, validate it, cancel it and the set it back to draft - - I create a partner -- - !record {model: res.partner, id: mandate_partner, view: False}: - name: "Mandate test" -- - I create a partner bank account -- - !record {model: res.partner.bank, id: mandate_partner_bank, view: False}: - acc_number: '1234' - partner_id: mandate_partner -- - I create a mandate on 1st January -- - !record {model: account.banking.mandate, id: test_mandate, view: False}: - partner_bank_id: mandate_partner_bank - signature_date: "2014-01-01" - -- - I check that the state field is automatically set by default -- - !assert {model: account.banking.mandate, id: test_mandate}: - - state == 'draft' -- - I go through all states by clicking on buttons and check that cancel state is reached -- - !python {model: account.banking.mandate}: | - self.validate(cr, uid, [ref('test_mandate')]) - self.cancel(cr, uid, [ref('test_mandate')]) - mandate = self.browse(cr, uid, ref('test_mandate')) - assert mandate.state == 'cancel', 'Mandate is not in cancel state' - self.back2draft(cr, uid, [ref('test_mandate')]) diff --git a/account_banking_mandate/tests/__init__.py b/account_banking_mandate/tests/__init__.py new file mode 100644 index 00000000000..df3d8d35210 --- /dev/null +++ b/account_banking_mandate/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_mandate diff --git a/account_banking_mandate/tests/test_mandate.py b/account_banking_mandate/tests/test_mandate.py new file mode 100644 index 00000000000..a59e9c048a5 --- /dev/null +++ b/account_banking_mandate/tests/test_mandate.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.tests.common import TransactionCase + + +class TestMandate(TransactionCase): + + def test_mandate(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + }) + self.assertEqual(mandate.state, 'draft') + mandate.validate() + self.assertEqual(mandate.state, 'valid') + mandate.cancel() + self.assertEqual(mandate.state, 'cancel') + mandate.back2draft() + self.assertEqual(mandate.state, 'draft') diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 682bdf076f0..71acbe7e526 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -1,11 +1,9 @@ - - + @@ -108,5 +106,4 @@ /> - - + diff --git a/account_banking_mandate/views/account_invoice_view.xml b/account_banking_mandate/views/account_invoice_view.xml index 1c1e46647a6..d02749d25f5 100644 --- a/account_banking_mandate/views/account_invoice_view.xml +++ b/account_banking_mandate/views/account_invoice_view.xml @@ -1,18 +1,17 @@ - - + + add.mandate.on.customer.invoice.form account.invoice - + @@ -21,5 +20,5 @@ - - + + diff --git a/account_banking_mandate/views/account_move_line.xml b/account_banking_mandate/views/account_move_line.xml index 69d51471deb..567fc14e1ef 100644 --- a/account_banking_mandate/views/account_move_line.xml +++ b/account_banking_mandate/views/account_move_line.xml @@ -1,12 +1,10 @@ - - + @@ -22,5 +20,4 @@ - - + diff --git a/account_banking_mandate/views/account_payment_line.xml b/account_banking_mandate/views/account_payment_line.xml index 55f1c0297d6..52288f78121 100644 --- a/account_banking_mandate/views/account_payment_line.xml +++ b/account_banking_mandate/views/account_payment_line.xml @@ -4,7 +4,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). --> - + account_banking_mandate.account.payment.line.form @@ -33,5 +33,5 @@
- + diff --git a/account_banking_mandate/views/account_payment_method.xml b/account_banking_mandate/views/account_payment_method.xml index 66744a97079..b562321cac7 100644 --- a/account_banking_mandate/views/account_payment_method.xml +++ b/account_banking_mandate/views/account_payment_method.xml @@ -1,6 +1,5 @@ - - + @@ -16,5 +15,4 @@ - - + diff --git a/account_banking_mandate/views/bank_payment_line_view.xml b/account_banking_mandate/views/bank_payment_line_view.xml index 98ec669a106..f06e0cb18d0 100644 --- a/account_banking_mandate/views/bank_payment_line_view.xml +++ b/account_banking_mandate/views/bank_payment_line_view.xml @@ -1,11 +1,10 @@ - - + + banking.mandate.bank.payment.line.form @@ -32,5 +31,4 @@ - - + diff --git a/account_banking_mandate/views/res_partner.xml b/account_banking_mandate/views/res_partner.xml index ea0d8a57fb3..e6df2294e3f 100644 --- a/account_banking_mandate/views/res_partner.xml +++ b/account_banking_mandate/views/res_partner.xml @@ -1,11 +1,10 @@ - - + + mandate.res.partner.form @@ -22,5 +21,5 @@
- - + + diff --git a/account_banking_mandate/views/res_partner_bank_view.xml b/account_banking_mandate/views/res_partner_bank_view.xml index 60f9cbce117..85c69a5505d 100644 --- a/account_banking_mandate/views/res_partner_bank_view.xml +++ b/account_banking_mandate/views/res_partner_bank_view.xml @@ -1,11 +1,10 @@ - - + + mandate.res.partner.bank.form @@ -31,5 +30,5 @@
- - + + From c639148a492adedb71ea020aaf53d45d4abb801d Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sun, 2 Apr 2017 22:14:57 +0200 Subject: [PATCH 016/118] [IMP] account_banking_mandate: Fill mandate in invoices if none is provided Using same method as in upstream, mandate is filled on invoice creation if no one is provided. This way, we don't need to install account_banking_mandate_sale if we don't want to handle several mandates at sales level. --- account_banking_mandate/__manifest__.py | 2 +- .../models/account_invoice.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index a7d0a871f98..553c4f7dfde 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '10.0.1.0.0', + 'version': '10.0.1.1.0', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index d9561ff8ec3..7c086d9f936 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -29,6 +29,24 @@ def line_get_convert(self, line, part): res['mandate_id'] = invoice.mandate_id.id or False return res + @api.model + def create(self, vals): + """Fill the mandate_id from the partner if none is provided on + creation, using same method as upstream.""" + onchanges = { + '_onchange_partner_id': ['mandate_id'], + } + for onchange_method, changed_fields in onchanges.items(): + if any(f not in vals for f in changed_fields): + invoice = self.new(vals) + getattr(invoice, onchange_method)() + for field in changed_fields: + if field not in vals and invoice[field]: + vals[field] = invoice._fields[field].convert_to_write( + invoice[field], invoice, + ) + return super(AccountInvoice, self).create(vals) + # If a customer pays via direct debit, it's refunds should # be deducted form the next debit by default. The module # account_payment_partner copies payment_mode_id from invoice From 65c6b6c1187397015fbeaca4512be7f69786f0cb Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 17 Sep 2016 01:31:04 -0400 Subject: [PATCH 017/118] OCA Transbot updated translations from Transifex --- account_banking_mandate/i18n/am.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/ar.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/ca.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/cs.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/da_DK.po | 387 +++++++++++++++++++++ account_banking_mandate/i18n/de.po | 390 ++++++++++++++++++++++ account_banking_mandate/i18n/el_GR.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/es.po | 147 ++------ account_banking_mandate/i18n/es_CR.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/es_EC.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/es_ES.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/es_MX.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/es_VE.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/et.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/fi.po | 388 +++++++++++++++++++++ account_banking_mandate/i18n/fr.po | 107 +----- account_banking_mandate/i18n/gl.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/hr.po | 387 +++++++++++++++++++++ account_banking_mandate/i18n/it.po | 387 +++++++++++++++++++++ account_banking_mandate/i18n/lt.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/nb_NO.po | 89 +---- account_banking_mandate/i18n/nl.po | 121 +------ account_banking_mandate/i18n/nl_BE.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/pl.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/pt.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/pt_BR.po | 92 +---- account_banking_mandate/i18n/pt_PT.po | 388 +++++++++++++++++++++ account_banking_mandate/i18n/ro.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/ru.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/sl.po | 106 +----- account_banking_mandate/i18n/th.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/tr.po | 462 ++++++++++++++++++++++++++ account_banking_mandate/i18n/vi.po | 462 ++++++++++++++++++++++++++ 33 files changed, 12121 insertions(+), 570 deletions(-) create mode 100644 account_banking_mandate/i18n/am.po create mode 100644 account_banking_mandate/i18n/ar.po create mode 100644 account_banking_mandate/i18n/ca.po create mode 100644 account_banking_mandate/i18n/cs.po create mode 100644 account_banking_mandate/i18n/da_DK.po create mode 100644 account_banking_mandate/i18n/de.po create mode 100644 account_banking_mandate/i18n/el_GR.po create mode 100644 account_banking_mandate/i18n/es_CR.po create mode 100644 account_banking_mandate/i18n/es_EC.po create mode 100644 account_banking_mandate/i18n/es_ES.po create mode 100644 account_banking_mandate/i18n/es_MX.po create mode 100644 account_banking_mandate/i18n/es_VE.po create mode 100644 account_banking_mandate/i18n/et.po create mode 100644 account_banking_mandate/i18n/fi.po create mode 100644 account_banking_mandate/i18n/gl.po create mode 100644 account_banking_mandate/i18n/hr.po create mode 100644 account_banking_mandate/i18n/it.po create mode 100644 account_banking_mandate/i18n/lt.po create mode 100644 account_banking_mandate/i18n/nl_BE.po create mode 100644 account_banking_mandate/i18n/pl.po create mode 100644 account_banking_mandate/i18n/pt.po create mode 100644 account_banking_mandate/i18n/pt_PT.po create mode 100644 account_banking_mandate/i18n/ro.po create mode 100644 account_banking_mandate/i18n/ru.po create mode 100644 account_banking_mandate/i18n/th.po create mode 100644 account_banking_mandate/i18n/tr.po create mode 100644 account_banking_mandate/i18n/vi.po diff --git a/account_banking_mandate/i18n/am.po b/account_banking_mandate/i18n/am.po new file mode 100644 index 00000000000..3eb88a2f5cc --- /dev/null +++ b/account_banking_mandate/i18n/am.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/ar.po b/account_banking_mandate/i18n/ar.po new file mode 100644 index 00000000000..021ce67c435 --- /dev/null +++ b/account_banking_mandate/i18n/ar.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/ca.po b/account_banking_mandate/i18n/ca.po new file mode 100644 index 00000000000..771bde785f5 --- /dev/null +++ b/account_banking_mandate/i18n/ca.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/cs.po b/account_banking_mandate/i18n/cs.po new file mode 100644 index 00000000000..fef521c696b --- /dev/null +++ b/account_banking_mandate/i18n/cs.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/da_DK.po b/account_banking_mandate/i18n/da_DK.po new file mode 100644 index 00000000000..78f069b816a --- /dev/null +++ b/account_banking_mandate/i18n/da_DK.po @@ -0,0 +1,387 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-18 00:42+0000\n" +"PO-Revision-Date: 2016-10-19 23:44+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/da_DK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/de.po b/account_banking_mandate/i18n/de.po new file mode 100644 index 00000000000..8508b529fb4 --- /dev/null +++ b/account_banking_mandate/i18n/de.po @@ -0,0 +1,390 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# Niki Waibel, 2016 +# Niki Waibel, 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 14:55+0000\n" +"PO-Revision-Date: 2016-12-27 12:33+0000\n" +"Last-Translator: Niki Waibel\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "Ein generisches Bankmandat" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Zurück zum Entwurf" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bankkonto" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Bankzahlungszeilen" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "Bankauftrag" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "Bankaufträge" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "Einfaches Mandat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Abbruch" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Abgebrochen" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "Datum der Unterschrift des Mandats" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "Lastschrift Mandat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "Bankeinzug Mandanten" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Entwurf" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "Abgelaufen" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "Format" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "Gruppiere nach" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "Rechnung" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "Logbuch Eintrag" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "Mandat" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "Format des Mandats" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "Mandat erforderlich" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "Mandate sollte im Abburchzustand sein." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "Mandat sollte im Entwurfs- oder Gültigzustand sein." + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "Mandate sollte im Entwurfszustand sein." + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "Mandat(e)" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "Mandate" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count +msgid "Number of Mandates" +msgstr "Anzahl der Mandate" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "Zahlungszeilen" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "Zahlungsmethoden" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "Referenz" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "Referenz oder Partner" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "Zugehörige Zahlungszeilen" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "Scan der Mandate" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "Suche Bank Mandate" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "Sepa Mandat" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "Datum der Unterschrift" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "Status" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Status" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "Eindeutige Mandantenreferenz" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "Gültig" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "Bestätigen" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/el_GR.po b/account_banking_mandate/i18n/el_GR.po new file mode 100644 index 00000000000..ca460ecc297 --- /dev/null +++ b/account_banking_mandate/i18n/el_GR.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index 767862ae169..e77fd8e3028 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -4,14 +4,15 @@ # # Translators: # OCA Transbot , 2016 +# Pedro M. Baeza , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-01 19:28+0000\n" -"PO-Revision-Date: 2016-07-01 19:28+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"POT-Creation-Date: 2017-05-01 14:55+0000\n" +"PO-Revision-Date: 2016-12-27 13:24+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -23,23 +24,18 @@ msgstr "" msgid "" "A Banking Mandate is a document signed by your customer that gives you the " "autorization to do one or several operations on his bank account." -msgstr "" +msgstr "Un mandato bancario es un documento firmado por su cliente que le da la autorización para hacer una o varias operaciones en su cuenta bancaria." #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 msgid "A Mandate with the same reference already exists for this company!" -msgstr "" +msgstr "Ya existe un mandato con la misma referencia para esta compañía." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_banking_mandate msgid "A generic banking mandate" msgstr "Un mandato bancario genérico" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -47,7 +43,7 @@ msgstr "" msgid "" "Activate this option if this payment method requires your customer to sign a" " direct debit mandate with your company." -msgstr "" +msgstr "Active esta opción si el método de pago requiere que su cliente firme un mandato con su compañía." #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -86,7 +82,7 @@ msgstr "Mandatos bancarios" msgid "" "Banking mandates represent an authorization that the bank account owner " "gives to a company for a specific operation." -msgstr "" +msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a una compañía para una operación específica." #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 @@ -110,9 +106,7 @@ msgstr "Cancelado" msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "" -"No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria " -"asociada." +msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 @@ -123,7 +117,7 @@ msgstr "No se puede validar el mandato '%s' sin una fecha de firma." #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action msgid "Click to create a new Banking Mandate." -msgstr "" +msgstr "Pulse para crear un mandato bancario nuevo." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id @@ -150,11 +144,6 @@ msgstr "Fecha de la firma del mandato" msgid "Date of the Last Debit" msgstr "Fecha del último cobro" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -171,8 +160,8 @@ msgstr "Mandatos de adeudo directo" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" -msgstr "" +msgid "Display Name" +msgstr "Nombre mostrado" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 @@ -186,21 +175,6 @@ msgstr "Borrador" msgid "Expired" msgstr "Expirado" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "Seguidores" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -217,40 +191,20 @@ msgstr "Agrupar por" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "Si está marcado, hay nuevos mensajes que requieren su atención" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "Factura" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "Fecha del último mensaje" +msgstr "Apunte contable" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid @@ -277,75 +231,54 @@ msgstr "Formato del mandato" #: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required msgid "Mandate Required" -msgstr "" +msgstr "Mandato requerido" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "Mandate should be in cancel state." -msgstr "" +msgstr "El mandato debe estar en estado cancelado." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 #, python-format msgid "Mandate should be in draft or valid state." -msgstr "" +msgstr "El mandato debe estar en estado borrador o válido." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 #, python-format msgid "Mandate should be in draft state." -msgstr "" +msgstr "El mandato debe estar en estado borrador." #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons msgid "Mandate(s)" -msgstr "" +msgstr "Mandato(s)" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree msgid "Mandates" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "Mensajes" +msgstr "Mandatos" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" +msgstr "Falta el mandato en la línea de pago %s" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "" +msgstr "Número de mandatos" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "" -"Sólo se pueden usar mandatos validados en una línea de pago. Un mandato " -"cancelado en un mandato que ha sido invalidado por el cliente." +msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner @@ -356,12 +289,12 @@ msgstr "Empresa" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" -msgstr "" +msgstr "Líneas de pago" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_method msgid "Payment Methods" -msgstr "" +msgstr "Métodos de pago" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -403,7 +336,7 @@ msgstr "Fecha de firma" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "State" -msgstr "" +msgstr "Estado" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state @@ -414,7 +347,7 @@ msgstr "Estado" #: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 #, python-format msgid "The date of signature of mandate '%s' is in the future!" -msgstr "" +msgstr "La fecha de la firma del mandato '%s' no puede ser posterior a hoy." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 @@ -422,9 +355,7 @@ msgstr "" msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "" -"El mandato '%s' no puede tener una fecha de último cobro antes de la fecha " -"de firma." +msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:27 @@ -432,23 +363,13 @@ msgstr "" msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "" +msgstr "La línea de pago con el número %s tiene la cuenta bancaria '%s', que no tiene está asociada con el mandato '%s' (este mandato está asociado con la cuenta bancaria '%s')." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" msgstr "Referencia única del mandato" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "Mensajes sin leer" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search @@ -465,6 +386,4 @@ msgstr "Validar" msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "" -"Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " -"error. ¿Desea continuar?" +msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" diff --git a/account_banking_mandate/i18n/es_CR.po b/account_banking_mandate/i18n/es_CR.po new file mode 100644 index 00000000000..f3462ba3d45 --- /dev/null +++ b/account_banking_mandate/i18n/es_CR.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/es_EC.po b/account_banking_mandate/i18n/es_EC.po new file mode 100644 index 00000000000..84fd373c006 --- /dev/null +++ b/account_banking_mandate/i18n/es_EC.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/es_ES.po b/account_banking_mandate/i18n/es_ES.po new file mode 100644 index 00000000000..997223bcb5c --- /dev/null +++ b/account_banking_mandate/i18n/es_ES.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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 (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/es_MX.po b/account_banking_mandate/i18n/es_MX.po new file mode 100644 index 00000000000..6fb06a2c0b4 --- /dev/null +++ b/account_banking_mandate/i18n/es_MX.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/es_VE.po b/account_banking_mandate/i18n/es_VE.po new file mode 100644 index 00000000000..dc1f963c86c --- /dev/null +++ b/account_banking_mandate/i18n/es_VE.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/et.po b/account_banking_mandate/i18n/et.po new file mode 100644 index 00000000000..05fa4237378 --- /dev/null +++ b/account_banking_mandate/i18n/et.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/fi.po b/account_banking_mandate/i18n/fi.po new file mode 100644 index 00000000000..013ae0b775a --- /dev/null +++ b/account_banking_mandate/i18n/fi.po @@ -0,0 +1,388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# Jarmo Kortetjärvi , 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:46+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "Peruutettu" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "Tila" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/fr.po b/account_banking_mandate/i18n/fr.po index 1790d88ac56..bd00f87c84c 100644 --- a/account_banking_mandate/i18n/fr.po +++ b/account_banking_mandate/i18n/fr.po @@ -6,12 +6,12 @@ # OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-01 19:28+0000\n" -"PO-Revision-Date: 2016-07-01 19:28+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:46+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,11 +35,6 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -131,12 +126,12 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" -msgstr "" +msgstr "Créée par" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date msgid "Created on" -msgstr "" +msgstr "Créée le" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date @@ -148,11 +143,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,8 +159,8 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" -msgstr "" +msgid "Display Name" +msgstr "Nom à afficher" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 @@ -184,21 +174,6 @@ msgstr "" msgid "Expired" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -208,57 +183,37 @@ msgstr "" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" -msgstr "" +msgstr "Regrouper par" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id msgid "ID" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" +msgstr "ID" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Dernière modification par" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date msgid "Last Updated on" -msgstr "" +msgstr "Modifié le" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree @@ -305,37 +260,17 @@ msgstr "" msgid "Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count msgid "Number of Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -347,7 +282,7 @@ msgstr "" #: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" -msgstr "" +msgstr "Partenaire" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line @@ -399,7 +334,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "State" -msgstr "" +msgstr "État" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state @@ -433,16 +368,6 @@ msgstr "" msgid "Unique Mandate Reference" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search diff --git a/account_banking_mandate/i18n/gl.po b/account_banking_mandate/i18n/gl.po new file mode 100644 index 00000000000..d4b0b3b8528 --- /dev/null +++ b/account_banking_mandate/i18n/gl.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/hr.po b/account_banking_mandate/i18n/hr.po new file mode 100644 index 00000000000..862b11dc948 --- /dev/null +++ b/account_banking_mandate/i18n/hr.po @@ -0,0 +1,387 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-03 00:10+0000\n" +"PO-Revision-Date: 2016-10-19 23:44+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "Nazad u nacrt" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "Bankovni račun" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "Stavke izvoda" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "Stavke plaćanja" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "Metode plaćanja" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po new file mode 100644 index 00000000000..54eb2edaca9 --- /dev/null +++ b/account_banking_mandate/i18n/it.po @@ -0,0 +1,387 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:46+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/lt.po b/account_banking_mandate/i18n/lt.po new file mode 100644 index 00000000000..5c7674fd801 --- /dev/null +++ b/account_banking_mandate/i18n/lt.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/nb_NO.po b/account_banking_mandate/i18n/nb_NO.po index 80953303610..2a7272156d1 100644 --- a/account_banking_mandate/i18n/nb_NO.po +++ b/account_banking_mandate/i18n/nb_NO.po @@ -6,12 +6,12 @@ # Imre Kristoffer Eilertsen , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-30 07:37+0000\n" -"PO-Revision-Date: 2016-07-30 07:37+0000\n" -"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,11 +35,6 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "Handling påkrevd" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -148,11 +143,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,8 +159,8 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" -msgstr "" +msgid "Display Name" +msgstr "Vis navn" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 @@ -184,21 +174,6 @@ msgstr "Drøfting" msgid "Expired" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "Følgere" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "Følgere (Kanaler)" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "Følgere (Partnere)" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -215,36 +190,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "Hvis valgt vil nye meldinger kreve din oppmerksomhet" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "Hvis valgt, vil nye meldinger kreve din oppmerksomhet" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "Er en følger." - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "Journalgjenstand" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "Dato for siste melding" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -305,37 +260,17 @@ msgstr "" msgid "Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "Meldinger" - #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "Antall handlinger" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count msgid "Number of Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "Antall meldinger som krever handling" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "Antall uleste meldinger" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -433,16 +368,6 @@ msgstr "" msgid "Unique Mandate Reference" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "Uleste meldinger" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search diff --git a/account_banking_mandate/i18n/nl.po b/account_banking_mandate/i18n/nl.po index f5603bd9a1d..9cd2f5b79ff 100644 --- a/account_banking_mandate/i18n/nl.po +++ b/account_banking_mandate/i18n/nl.po @@ -6,12 +6,12 @@ # Erwin van der Ploeg , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 23:52+0000\n" -"PO-Revision-Date: 2016-07-22 23:52+0000\n" -"Last-Translator: Erwin van der Ploeg , 2016\n" -"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"POT-Creation-Date: 2017-05-01 14:55+0000\n" +"PO-Revision-Date: 2016-12-22 11:48+0000\n" +"Last-Translator: Erwin van der Ploeg \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -23,10 +23,7 @@ msgstr "" msgid "" "A Banking Mandate is a document signed by your customer that gives you the " "autorization to do one or several operations on his bank account." -msgstr "" -"Een bankmandaat is een document ondertekend door uw klant die autorisatie " -"geeft om één of meerdere acties uit te voeren op de bankrekening van de " -"klant." +msgstr "Een bankmandaat is een document ondertekend door uw klant die autorisatie geeft om één of meerdere acties uit te voeren op de bankrekening van de klant." #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 @@ -38,11 +35,6 @@ msgstr "Een mandaat met dezelfde naam bestaat al met deze code." msgid "A generic banking mandate" msgstr "Een generiek bank mandaat" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "Actie nodig" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -50,9 +42,7 @@ msgstr "Actie nodig" msgid "" "Activate this option if this payment method requires your customer to sign a" " direct debit mandate with your company." -msgstr "" -"Activeer deze optie wanneer bij de betaalwijze uw klant verplicht is om een " -"incasso mandaat met uw bedrijf te ondertekenen." +msgstr "Activeer deze optie wanneer bij de betaalwijze uw klant verplicht is om een incasso mandaat met uw bedrijf te ondertekenen." #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -91,9 +81,7 @@ msgstr "Bank mandaten" msgid "" "Banking mandates represent an authorization that the bank account owner " "gives to a company for a specific operation." -msgstr "" -"Een bank mandaat wordt door de bankrekening eigenaar\n" -" gegeven aan een bedrijf om een specifieke actie uit te kunnen voeren. " +msgstr "Een bank mandaat wordt door de bankrekening eigenaar\n gegeven aan een bedrijf om een specifieke actie uit te kunnen voeren. " #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 @@ -117,9 +105,7 @@ msgstr "Geannuleerd" msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "" -"Kan mandate '%s' niet valideren omdat deze niet aan een bankrekening " -"gekoppeld is. " +msgstr "Kan mandate '%s' niet valideren omdat deze niet aan een bankrekening gekoppeld is. " #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 @@ -157,11 +143,6 @@ msgstr "Datum van ondertekening mandaat" msgid "Date of the Last Debit" msgstr "Datum van laatste debet" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "Datum van het laatste bericht op het record." - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -178,7 +159,7 @@ msgstr "Incasso mandaten" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "Weergave naam" #. module: account_banking_mandate @@ -193,21 +174,6 @@ msgstr "Concept" msgid "Expired" msgstr "Vervallen" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "Volgers" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "Volgers (Kanalen)" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "Volgers (Relaties)" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -224,36 +190,16 @@ msgstr "Groepeer op" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "Indien aangevinkt vraagt een bericht om uw aandacht." - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "Indien aangevinkt vraagt een bericht om uw aandacht." - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "Factuur" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "Is een volger" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "Boekingsregel" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "Laatste berichten datum" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -314,45 +260,24 @@ msgstr "Mandaten" msgid "Mandates" msgstr "Mandaten" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "Berichten" - #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" msgstr "Ontbrekende mandaat op betaalregel %s" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "Aantal acties" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "Aantal mandaten" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "Aantal berichten welke vragen om een actie" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "Aantal ongelezen berichten" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "" -"Alleen gevalideerde bank mandaten kunnen worden gebruikt in betaalregels. " -"Een geannuleerd mandaat is een mandaat dat geannuleerd is door de klant." +msgstr "Alleen gevalideerde bank mandaten kunnen worden gebruikt in betaalregels. Een geannuleerd mandaat is een mandaat dat geannuleerd is door de klant." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner @@ -429,9 +354,7 @@ msgstr "De datum van de handtekening van mandaat '%s' is in de toekomts!" msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "" -"Mandaat '%s' kan geen datum van laatste debet hebben coor de datum van " -"ondertekenen." +msgstr "Mandaat '%s' kan geen datum van laatste debet hebben coor de datum van ondertekenen." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:27 @@ -439,25 +362,13 @@ msgstr "" msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "" -"Betaalregelnummer %s heeft een bankrekeningnummer '%s' die niet gekoppeld " -"is aan mandaat '%s' (dit mandaat is gekoppeld aan bankrekeningnummer '%s')." +msgstr "Betaalregelnummer %s heeft een bankrekeningnummer '%s' die niet gekoppeld is aan mandaat '%s' (dit mandaat is gekoppeld aan bankrekeningnummer '%s')." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" msgstr "Unieke madaat referentie" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "Ongelezen berichten" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "Ongelezen berichten teller" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search @@ -474,6 +385,4 @@ msgstr "Bevestig" msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "" -"Een mandaat moet alleen teruggezet worden naar concept wanneer u deze per " -"ongeluk heeft geannuleerd. Wilt u verdergaan? " +msgstr "Een mandaat moet alleen teruggezet worden naar concept wanneer u deze per ongeluk heeft geannuleerd. Wilt u verdergaan? " diff --git a/account_banking_mandate/i18n/nl_BE.po b/account_banking_mandate/i18n/nl_BE.po new file mode 100644 index 00000000000..c7c7f3c5804 --- /dev/null +++ b/account_banking_mandate/i18n/nl_BE.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/pl.po b/account_banking_mandate/i18n/pl.po new file mode 100644 index 00000000000..65ba6a550c1 --- /dev/null +++ b/account_banking_mandate/i18n/pl.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\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_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/pt.po b/account_banking_mandate/i18n/pt.po new file mode 100644 index 00000000000..0c6868ed6e1 --- /dev/null +++ b/account_banking_mandate/i18n/pt.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/pt_BR.po b/account_banking_mandate/i18n/pt_BR.po index 5314863c282..86b9abb74b3 100644 --- a/account_banking_mandate/i18n/pt_BR.po +++ b/account_banking_mandate/i18n/pt_BR.po @@ -6,12 +6,12 @@ # OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-01 19:28+0000\n" -"PO-Revision-Date: 2016-07-01 19:28+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,11 +35,6 @@ msgstr "" msgid "A generic banking mandate" msgstr "Uma ordem bancária genérica" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -110,8 +105,7 @@ msgstr "Cancelado" msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "" -"Não pode validar a ordem '%s' porque não está anexada a conta bancária." +msgstr "Não pode validar a ordem '%s' porque não está anexada a conta bancária." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 @@ -149,11 +143,6 @@ msgstr "Data de assinatura da ordem" msgid "Date of the Last Debit" msgstr "Data do último débito" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "Data da última mensagem postada no registro" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -170,7 +159,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,21 +174,6 @@ msgstr "Provisório" msgid "Expired" msgstr "Expirado" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "Seguidores" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -216,36 +190,16 @@ msgstr "Agrupar por" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "Se marcado novas mensagens requerem sua atenção." - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "Fatura" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "Data da última mensagem" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -306,37 +260,17 @@ msgstr "" msgid "Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count msgid "Number of Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -353,7 +287,7 @@ msgstr "Parceiro" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" -msgstr "" +msgstr "Linhas do pagamento" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_method @@ -434,16 +368,6 @@ msgstr "" msgid "Unique Mandate Reference" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search diff --git a/account_banking_mandate/i18n/pt_PT.po b/account_banking_mandate/i18n/pt_PT.po new file mode 100644 index 00000000000..1b3bcc86315 --- /dev/null +++ b/account_banking_mandate/i18n/pt_PT.po @@ -0,0 +1,388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# Translators: +# OCA Transbot , 2016 +# Pedro Castro Silva , 2016 +msgid "" +msgstr "" +"Project-Id-Version: bank-payment (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "Rascunho" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "Estado" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/ro.po b/account_banking_mandate/i18n/ro.po new file mode 100644 index 00000000000..abc1c407f99 --- /dev/null +++ b/account_banking_mandate/i18n/ro.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/ru.po b/account_banking_mandate/i18n/ru.po new file mode 100644 index 00000000000..e58b310842a --- /dev/null +++ b/account_banking_mandate/i18n/ru.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/sl.po b/account_banking_mandate/i18n/sl.po index 7a0d1d46b24..7e5e42b24aa 100644 --- a/account_banking_mandate/i18n/sl.po +++ b/account_banking_mandate/i18n/sl.po @@ -6,12 +6,12 @@ # OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-01 19:28+0000\n" -"PO-Revision-Date: 2016-07-01 19:28+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"POT-Creation-Date: 2016-11-21 10:17+0000\n" +"PO-Revision-Date: 2016-10-19 23:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,11 +35,6 @@ msgstr "" msgid "A generic banking mandate" msgstr "Generični bančni mandat" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required @@ -148,11 +143,6 @@ msgstr "Datum podpisa mandata" msgid "Date of the Last Debit" msgstr "Datum zadnje obremenitve" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "Datum objave zadnjega sporočila na zapisu." - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,8 +159,8 @@ msgstr "Mandati za direktne obremenitve" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" -msgstr "" +msgid "Display Name" +msgstr "Prikazni naziv" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 @@ -184,21 +174,6 @@ msgstr "Osnutek" msgid "Expired" msgstr "Pretečeni" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "Sledilci" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" -msgstr "" - #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -215,40 +190,20 @@ msgstr "Zfruži po" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "Ko je označeno, zahtevajo vašo pozornost nova sporočila." - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "Račun" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "Datum zadnjega sporočila" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" -msgstr "" +msgstr "Zadnjič spremenjeno" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid @@ -305,45 +260,23 @@ msgstr "" msgid "Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "Sporočila" - #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:40 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count msgid "Number of Mandates" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "" -"V postavki plačila se lahko uporabijo le veljavni mandati. Preklican mandat " -"je mandat, ki ga je kupec preklical." +msgstr "V postavki plačila se lahko uporabijo le veljavni mandati. Preklican mandat je mandat, ki ga je kupec preklical." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner @@ -354,7 +287,7 @@ msgstr "Partner" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" -msgstr "" +msgstr "Plačilne postavke" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_method @@ -401,7 +334,7 @@ msgstr "Datum podpisa" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "State" -msgstr "" +msgstr "Stanje" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state @@ -420,8 +353,7 @@ msgstr "" msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "" -"Mandat '%s' ne sme imeti datuma zadnje obremenitve pred datumom podpisa." +msgstr "Mandat '%s' ne sme imeti datuma zadnje obremenitve pred datumom podpisa." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:27 @@ -436,16 +368,6 @@ msgstr "" msgid "Unique Mandate Reference" msgstr "Unikatni sklic mandata" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" -msgstr "Neprebrana sporočila" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" -msgstr "" - #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search @@ -462,6 +384,4 @@ msgstr "Potrdi" msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "" -"Mandat ponastavite v osnutek le, če ste ga pomotoma preklicali. Želite " -"nadaljevati?" +msgstr "Mandat ponastavite v osnutek le, če ste ga pomotoma preklicali. Želite nadaljevati?" diff --git a/account_banking_mandate/i18n/th.po b/account_banking_mandate/i18n/th.po new file mode 100644 index 00000000000..69c2920fb52 --- /dev/null +++ b/account_banking_mandate/i18n/th.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/tr.po b/account_banking_mandate/i18n/tr.po new file mode 100644 index 00000000000..0b6299598ad --- /dev/null +++ b/account_banking_mandate/i18n/tr.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "ID" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" diff --git a/account_banking_mandate/i18n/vi.po b/account_banking_mandate/i18n/vi.po new file mode 100644 index 00000000000..128b2bdb9db --- /dev/null +++ b/account_banking_mandate/i18n/vi.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "" +"A Banking Mandate is a document signed by your customer that gives you the " +"autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "" +"Activate this option if this payment method requires your customer to sign a" +" direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "" +"Banking mandates represent an authorization that the bank account owner " +"gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#, python-format +msgid "" +"Cannot validate the mandate '%s' because it is not attached to a bank " +"account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids +msgid "Messages" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "" +"Only valid mandates can be used in a payment line. A cancelled mandate is a " +"mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#, python-format +msgid "" +"The mandate '%s' can't have a date of last debit before the date of " +"signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#, python-format +msgid "" +"The payment line number %s has the bank account '%s' which is not attached " +"to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "" +"You should set a mandate back to draft only if you cancelled it by mistake. " +"Do you want to continue?" +msgstr "" From c95d3e96ab8d2c813cc70d90e5fcad444078ef25 Mon Sep 17 00:00:00 2001 From: Andrea Stirpe Date: Tue, 22 Aug 2017 10:26:29 +0200 Subject: [PATCH 018/118] [FIX][10.0] account_banking_mandate: onchange return value missing (#382) --- account_banking_mandate/__manifest__.py | 2 +- account_banking_mandate/models/account_invoice.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 553c4f7dfde..7bb7a3f0d1c 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '10.0.1.1.0', + 'version': '10.0.1.1.1', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index 7c086d9f936..7adb49f107a 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -65,7 +65,7 @@ def _prepare_refund( @api.onchange('partner_id', 'company_id') def _onchange_partner_id(self): """Select by default the first valid mandate of the partner""" - super(AccountInvoice, self)._onchange_partner_id() + res = super(AccountInvoice, self)._onchange_partner_id() if ( self.type == 'out_invoice' and self.partner_id.customer_payment_mode_id. @@ -81,6 +81,7 @@ def _onchange_partner_id(self): self.mandate_id = mandates[0] else: self.mandate_id = False + return res @api.onchange('payment_mode_id') def payment_mode_id_change(self): From 1f29c53cbba01e6b09cad670d042b4eaca6a3f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Tue, 5 Sep 2017 15:22:08 +0200 Subject: [PATCH 019/118] [UPD] if a mandate is linked to the bank account used, put it automatically on the payment line' --- account_banking_mandate/README.rst | 1 + account_banking_mandate/__manifest__.py | 2 +- account_banking_mandate/models/account_move_line.py | 7 +++++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 0fb4974ece1..3b5d39c9acb 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -60,6 +60,7 @@ Contributors * Alexandre Fayolle * Stéphane Bidoul * Sergio Teruel (Incaser) +* Cédric Pigeon Maintainer ---------- diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 7bb7a3f0d1c..42969b56355 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '10.0.1.1.1', + 'version': '10.0.1.1.2', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index 52aaef2c748..8306ca1e4db 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -19,4 +19,11 @@ def _prepare_payment_line_vals(self, payment_order): if payment_order.payment_type == 'inbound' and self.mandate_id: vals['mandate_id'] = self.mandate_id.id vals['partner_bank_id'] = self.mandate_id.partner_bank_id.id + partner_bank_id = vals.get('partner_bank_id', False) + if partner_bank_id and 'mandate_id' not in vals: + mandate = self.env['account.banking.mandate'].search( + [('partner_bank_id', '=', partner_bank_id), + ('state', '=', 'valid')], limit=1) + if mandate: + vals['mandate_id'] = mandate.id return vals From 959373947aaa876fc80524853ca917c7a82bfea5 Mon Sep 17 00:00:00 2001 From: etobella Date: Mon, 16 Oct 2017 16:28:26 +0200 Subject: [PATCH 020/118] [MIG] account_payment_mandate: Migration to 11.0 --- account_banking_mandate/README.rst | 8 +-- account_banking_mandate/__manifest__.py | 4 +- .../models/account_banking_mandate.py | 7 +- .../models/account_invoice.py | 8 +-- .../models/account_move_line.py | 2 +- .../models/account_payment_line.py | 2 +- .../models/account_payment_method.py | 2 +- .../models/bank_payment_line.py | 2 +- account_banking_mandate/models/res_partner.py | 2 +- .../models/res_partner_bank.py | 2 +- .../security/mandate_security.xml | 2 +- account_banking_mandate/tests/__init__.py | 1 + .../tests/test_invoice_mandate.py | 65 +++++++++++++++++++ account_banking_mandate/tests/test_mandate.py | 3 +- .../views/account_banking_mandate_view.xml | 3 +- .../views/account_invoice_view.xml | 2 +- .../views/account_move_line.xml | 2 +- .../views/account_payment_line.xml | 2 +- .../views/bank_payment_line_view.xml | 2 +- account_banking_mandate/views/res_partner.xml | 2 +- .../views/res_partner_bank_view.xml | 2 +- 21 files changed, 99 insertions(+), 26 deletions(-) create mode 100644 account_banking_mandate/tests/test_invoice_mandate.py diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 3b5d39c9acb..4edff4f4d8a 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -34,7 +34,7 @@ To use this module, see menu "Accounting > payment > SEPA direct debit mandates" .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/173/9.0 + :target: https://runbot.odoo-community.org/runbot/173/11.0 Known issues / Roadmap ====================== @@ -65,12 +65,12 @@ Contributors Maintainer ---------- -.. image:: http://odoo-community.org/logo.png +.. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association - :target: http://odoo-community.org + :target: https://odoo-community.org This module is maintained by the OCA. 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. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 42969b56355..f06a45a398c 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -2,12 +2,12 @@ # © 2014 Compassion CH - Cyril Sester # © 2014 Tecnativa - Pedro M. Baeza # © 2015-2016 Akretion - Alexis de Lattre -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '10.0.1.1.2', + 'version': '11.0.1.0.1', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 8848096065a..8224c0d1ab4 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -2,7 +2,7 @@ # © 2014 Compassion CH - Cyril Sester # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # © 2015-2016 Akretion - Alexis de Lattre -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api, _ from odoo.exceptions import UserError, ValidationError @@ -22,6 +22,11 @@ class AccountBankingMandate(models.Model): format = fields.Selection( [('basic', 'Basic Mandate')], default='basic', required=True, string='Mandate Format', track_visibility='onchange') + type = fields.Selection( + [('generic', 'Generic Mandate')], + string='Type of Mandate', + track_visibility='onchange' + ) partner_bank_id = fields.Many2one( comodel_name='res.partner.bank', string='Bank Account', track_visibility='onchange') diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index 7adb49f107a..9d2aff82d84 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -2,7 +2,7 @@ # © 2014 Compassion CH - Cyril Sester # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api @@ -36,7 +36,7 @@ def create(self, vals): onchanges = { '_onchange_partner_id': ['mandate_id'], } - for onchange_method, changed_fields in onchanges.items(): + for onchange_method, changed_fields in list(onchanges.items()): if any(f not in vals for f in changed_fields): invoice = self.new(vals) getattr(invoice, onchange_method)() @@ -84,8 +84,8 @@ def _onchange_partner_id(self): return res @api.onchange('payment_mode_id') - def payment_mode_id_change(self): - super(AccountInvoice, self).payment_mode_id_change() + def _onchange_payment_mode_id(self): + super(AccountInvoice, self)._onchange_payment_mode_id() if ( self.payment_mode_id and self.payment_mode_id.payment_type == 'inbound' and diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index 8306ca1e4db..a3b80011b4f 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Akretion (http://www.akretion.com/) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api diff --git a/account_banking_mandate/models/account_payment_line.py b/account_banking_mandate/models/account_payment_line.py index 61969d93d35..d4677ac6d18 100644 --- a/account_banking_mandate/models/account_payment_line.py +++ b/account_banking_mandate/models/account_payment_line.py @@ -2,7 +2,7 @@ # © 2014 Compassion CH - Cyril Sester # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # © 2015-2016 Akretion - Alexis de Lattre -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api, _ from odoo.exceptions import ValidationError, UserError diff --git a/account_banking_mandate/models/account_payment_method.py b/account_banking_mandate/models/account_payment_method.py index 4bf1f4309bf..66a10e2afb2 100644 --- a/account_banking_mandate/models/account_payment_method.py +++ b/account_banking_mandate/models/account_payment_method.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields diff --git a/account_banking_mandate/models/bank_payment_line.py b/account_banking_mandate/models/bank_payment_line.py index 3d0d1b3295c..4b583a71c3f 100644 --- a/account_banking_mandate/models/bank_payment_line.py +++ b/account_banking_mandate/models/bank_payment_line.py @@ -2,7 +2,7 @@ # © 2014 Compassion CH - Cyril Sester # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # © 2015-2016 Akretion - Alexis de Lattre -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api diff --git a/account_banking_mandate/models/res_partner.py b/account_banking_mandate/models/res_partner.py index bcc7b3dd74d..b9fae189021 100644 --- a/account_banking_mandate/models/res_partner.py +++ b/account_banking_mandate/models/res_partner.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py index c693ab280df..01263410e6d 100644 --- a/account_banking_mandate/models/res_partner_bank.py +++ b/account_banking_mandate/models/res_partner_bank.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # © 2014 Compassion CH - Cyril Sester # © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields diff --git a/account_banking_mandate/security/mandate_security.xml b/account_banking_mandate/security/mandate_security.xml index 2b88bb12bd5..bff46c5e567 100644 --- a/account_banking_mandate/security/mandate_security.xml +++ b/account_banking_mandate/security/mandate_security.xml @@ -1,7 +1,7 @@ diff --git a/account_banking_mandate/tests/__init__.py b/account_banking_mandate/tests/__init__.py index df3d8d35210..15cf9fc5718 100644 --- a/account_banking_mandate/tests/__init__.py +++ b/account_banking_mandate/tests/__init__.py @@ -1,3 +1,4 @@ # -*- coding: utf-8 -*- from . import test_mandate +from . import test_invoice_mandate diff --git a/account_banking_mandate/tests/test_invoice_mandate.py b/account_banking_mandate/tests/test_invoice_mandate.py new file mode 100644 index 00000000000..485e2507f3b --- /dev/null +++ b/account_banking_mandate/tests/test_invoice_mandate.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +# © 2017 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo.tests.common import TransactionCase + + +class TestInvoiceMandate(TransactionCase): + + def test_post_invoice_and_refund(self): + self.invoice._onchange_partner_id() + self.invoice.action_invoice_open() + self.env['account.invoice.payment.line.multi'].with_context( + active_model='account.invoice', + active_ids=self.invoice.ids + ).create({}).run() + + payment_order = self.env['account.payment.order'].search([]) + self.assertEqual(len(payment_order.ids), 1) + payment_order.draft2open() + payment_order.open2generated() + payment_order.generated2uploaded() + + def test_post_invoice_and_refund(self): + self.invoice._onchange_partner_id() + self.invoice.action_invoice_open() + self.assertEqual(self.invoice.mandate_id, self.mandate) + self.invoice.refund() + + def setUp(self): + res = super(TestInvoiceMandate, self).setUp() + self.partner = self.env.ref('base.res_partner_12') + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + self.mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + }) + self.mandate.validate() + mode = self.env.ref('account_payment_mode.payment_mode_inbound_ct1') + self.partner.customer_payment_mode_id = mode + mode.payment_method_id.mandate_required = True + invoice_account = self.env['account.account'].search( + [('user_type_id', '=', self.env.ref( + 'account.data_account_type_payable').id)], + limit=1).id + invoice_line_account = self.env['account.account'].search( + [('user_type_id', '=', self.env.ref( + 'account.data_account_type_expenses').id)], + limit=1).id + + self.invoice = self.env['account.invoice'].create({ + 'partner_id': self.partner.id, + 'account_id': invoice_account, + 'type': 'out_invoice' + }) + + self.env['account.invoice.line'].create({ + 'product_id': self.env.ref('product.product_product_4').id, + 'quantity': 1.0, + 'price_unit': 100.0, + 'invoice_id': self.invoice.id, + 'name': 'product that cost 100', + 'account_id': invoice_line_account, + }) + return res diff --git a/account_banking_mandate/tests/test_mandate.py b/account_banking_mandate/tests/test_mandate.py index a59e9c048a5..db14316ce4d 100644 --- a/account_banking_mandate/tests/test_mandate.py +++ b/account_banking_mandate/tests/test_mandate.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo.tests.common import TransactionCase @@ -16,6 +16,7 @@ def test_mandate(self): self.assertEqual(mandate.state, 'draft') mandate.validate() self.assertEqual(mandate.state, 'valid') + self.assertEqual(bank_account.partner_id.mandate_count, 1) mandate.cancel() self.assertEqual(mandate.state, 'cancel') mandate.back2draft() diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 71acbe7e526..2e21d4ba48f 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -1,7 +1,7 @@ @@ -30,6 +30,7 @@ + diff --git a/account_banking_mandate/views/account_move_line.xml b/account_banking_mandate/views/account_move_line.xml index 567fc14e1ef..59f322d19af 100644 --- a/account_banking_mandate/views/account_move_line.xml +++ b/account_banking_mandate/views/account_move_line.xml @@ -1,7 +1,7 @@ diff --git a/account_banking_mandate/views/account_payment_line.xml b/account_banking_mandate/views/account_payment_line.xml index 52288f78121..ecce6877976 100644 --- a/account_banking_mandate/views/account_payment_line.xml +++ b/account_banking_mandate/views/account_payment_line.xml @@ -1,7 +1,7 @@ diff --git a/account_banking_mandate/views/bank_payment_line_view.xml b/account_banking_mandate/views/bank_payment_line_view.xml index f06e0cb18d0..983e2b91e8e 100644 --- a/account_banking_mandate/views/bank_payment_line_view.xml +++ b/account_banking_mandate/views/bank_payment_line_view.xml @@ -1,7 +1,7 @@ diff --git a/account_banking_mandate/views/res_partner.xml b/account_banking_mandate/views/res_partner.xml index e6df2294e3f..1ff56927aec 100644 --- a/account_banking_mandate/views/res_partner.xml +++ b/account_banking_mandate/views/res_partner.xml @@ -1,7 +1,7 @@ diff --git a/account_banking_mandate/views/res_partner_bank_view.xml b/account_banking_mandate/views/res_partner_bank_view.xml index 85c69a5505d..9793fce1a8f 100644 --- a/account_banking_mandate/views/res_partner_bank_view.xml +++ b/account_banking_mandate/views/res_partner_bank_view.xml @@ -1,7 +1,7 @@ From 2710c55d11da6f120f7ee389669e94d9b7a76b15 Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Tue, 24 Oct 2017 23:38:17 +0200 Subject: [PATCH 021/118] [IMP] account_banking_mandate: Fill payment line with first valid mandate + Add valid_mandate field and fix onchange (cherry picked from commit 25d2e4d) --- account_banking_mandate/README.rst | 7 +-- account_banking_mandate/__manifest__.py | 12 ++--- .../models/account_invoice.py | 45 +++++++------------ .../models/account_move_line.py | 33 +++++++++----- account_banking_mandate/models/res_partner.py | 24 +++++++++- 5 files changed, 70 insertions(+), 51 deletions(-) diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 4edff4f4d8a..6dbfee105b4 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -30,7 +30,7 @@ TODO Usage ===== -To use this module, see menu "Accounting > payment > SEPA direct debit mandates" +To use this module, see menu "Accounting > payment > SEPA direct debit mandates" .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot @@ -56,11 +56,12 @@ Contributors ------------ * Alexis de Lattre -* Pedro M. Baeza +* Pedro M. Baeza * Alexandre Fayolle * Stéphane Bidoul -* Sergio Teruel (Incaser) +* Sergio Teruel * Cédric Pigeon +* Carlos Dauden Maintainer ---------- diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index f06a45a398c..77a3a602373 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -1,13 +1,15 @@ # -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 2014 Tecnativa - Pedro M. Baeza -# © 2015-2016 Akretion - Alexis de Lattre -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Tecnativa - Pedro M. Baeza +# Copyright 2015-16 Akretion - Alexis de Lattre +# Copyright 2017 Tecnativa - Carlos Dauden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '11.0.1.0.1', + 'version': '11.0.1.0.0', + 'version': '10.0.1.1.3', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index 9d2aff82d84..455f90804cd 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -1,8 +1,9 @@ # -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 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). +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# Copyright 2016 Akretion (Alexis de Lattre ) +# Copyright 2017 Carlos Dauden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api @@ -35,6 +36,7 @@ def create(self, vals): creation, using same method as upstream.""" onchanges = { '_onchange_partner_id': ['mandate_id'], + 'payment_mode_id_change': ['mandate_id'], } for onchange_method, changed_fields in list(onchanges.items()): if any(f not in vals for f in changed_fields): @@ -43,7 +45,7 @@ def create(self, vals): for field in changed_fields: if field not in vals and invoice[field]: vals[field] = invoice._fields[field].convert_to_write( - invoice[field], invoice, + invoice[field], ) return super(AccountInvoice, self).create(vals) @@ -62,34 +64,19 @@ def _prepare_refund( vals['mandate_id'] = invoice.mandate_id.id return vals + def set_mandate(self): + if self.payment_mode_id.payment_method_id.mandate_required: + self.mandate_id = self.partner_id.valid_mandate_id + else: + self.mandate_id = False + @api.onchange('partner_id', 'company_id') def _onchange_partner_id(self): """Select by default the first valid mandate of the partner""" - res = super(AccountInvoice, self)._onchange_partner_id() - if ( - self.type == 'out_invoice' and - self.partner_id.customer_payment_mode_id. - payment_type == 'inbound' and - self.partner_id.customer_payment_mode_id.payment_method_id. - mandate_required and - self.commercial_partner_id): - mandates = self.env['account.banking.mandate'].search([ - ('state', '=', 'valid'), - ('partner_id', '=', self.commercial_partner_id.id), - ]) - if mandates: - self.mandate_id = mandates[0] - else: - self.mandate_id = False - return res + super(AccountInvoice, self)._onchange_partner_id() + self.set_mandate() @api.onchange('payment_mode_id') def _onchange_payment_mode_id(self): super(AccountInvoice, self)._onchange_payment_mode_id() - if ( - self.payment_mode_id and - self.payment_mode_id.payment_type == 'inbound' and - not self.payment_mode_id.payment_method_id.mandate_required): - self.mandate_id = False - elif not self.payment_mode_id: - self.mandate_id = False + self.set_mandate() diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index a3b80011b4f..98e792633bc 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- -# © 2016 Akretion (http://www.akretion.com/) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright Akretion (http://www.akretion.com/) +# Copyright 2017 Carlos Dauden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from odoo import models, fields, api @@ -16,14 +18,21 @@ class AccountMoveLine(models.Model): def _prepare_payment_line_vals(self, payment_order): vals = super(AccountMoveLine, self)._prepare_payment_line_vals( payment_order) - if payment_order.payment_type == 'inbound' and self.mandate_id: - vals['mandate_id'] = self.mandate_id.id - vals['partner_bank_id'] = self.mandate_id.partner_bank_id.id - partner_bank_id = vals.get('partner_bank_id', False) - if partner_bank_id and 'mandate_id' not in vals: - mandate = self.env['account.banking.mandate'].search( - [('partner_bank_id', '=', partner_bank_id), - ('state', '=', 'valid')], limit=1) - if mandate: - vals['mandate_id'] = mandate.id + if payment_order.payment_type != 'inbound': + return vals + mandate = self.mandate_id + if not mandate and vals.get('mandate_id', False): + mandate = mandate.browse(vals['mandate_id']) + if not mandate: + partner_bank_id = vals.get('partner_bank_id', False) + if partner_bank_id: + domain = [('partner_bank_id', '=', partner_bank_id)] + else: + domain = [('partner_id', '=', self.partner_id.id)] + domain.append(('state', '=', 'valid')) + mandate = mandate.search(domain, limit=1) + vals.update({ + 'mandate_id': mandate.id, + 'partner_bank_id': mandate.partner_bank_id.id or partner_bank_id, + }) return vals diff --git a/account_banking_mandate/models/res_partner.py b/account_banking_mandate/models/res_partner.py index b9fae189021..f59a7ea7379 100644 --- a/account_banking_mandate/models/res_partner.py +++ b/account_banking_mandate/models/res_partner.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- -# © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2016 Akretion (Alexis de Lattre ) +# Copyright 2017 Carlos Dauden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api @@ -11,6 +12,10 @@ class ResPartner(models.Model): mandate_count = fields.Integer( compute='_compute_mandate_count', string="Number of Mandates", readonly=True) + valid_mandate_id = fields.Many2one( + comodel_name='account.banking.mandate', + compute='compute_valid_mandate_id', + string='First Valid Mandate') @api.multi def _compute_mandate_count(self): @@ -21,3 +26,18 @@ def _compute_mandate_count(self): for mandate in mandate_data]) for partner in self: partner.mandate_count = mapped_data.get(partner.id, 0) + + @api.multi + def compute_valid_mandate_id(self): + # Dict for reducing the duplicated searches on parent/child partners + mandates_dic = {} + for partner in self: + commercial_partner_id = partner.commercial_partner_id.id + if commercial_partner_id in mandates_dic: + partner.valid_mandate_id = mandates_dic[commercial_partner_id] + else: + mandates = partner.commercial_partner_id.bank_ids.mapped( + 'mandate_ids').filtered(lambda x: x.state == 'valid') + first_valid_mandate_id = mandates[:1].id + partner.valid_mandate_id = first_valid_mandate_id + mandates_dic[commercial_partner_id] = first_valid_mandate_id From cebdcb212e8176e293ed94f9363f8a302897e0f4 Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Tue, 7 Nov 2017 11:59:47 +0100 Subject: [PATCH 022/118] add rests. Add better multicompany support add tests and constrains --- account_banking_mandate/README.rst | 6 +- account_banking_mandate/__init__.py | 1 - account_banking_mandate/__manifest__.py | 4 +- account_banking_mandate/models/__init__.py | 1 - .../models/account_banking_mandate.py | 53 ++++- .../models/account_invoice.py | 20 +- .../models/account_move_line.py | 17 +- .../models/account_payment_line.py | 19 +- .../models/account_payment_method.py | 3 +- .../models/bank_payment_line.py | 20 +- account_banking_mandate/models/res_partner.py | 17 +- .../models/res_partner_bank.py | 20 +- .../security/mandate_security.xml | 2 +- account_banking_mandate/tests/__init__.py | 1 - .../tests/test_invoice_mandate.py | 197 ++++++++++++++++-- account_banking_mandate/tests/test_mandate.py | 117 ++++++++++- 16 files changed, 437 insertions(+), 61 deletions(-) diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 6dbfee105b4..715edacb2e0 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -30,16 +30,12 @@ TODO Usage ===== -To use this module, see menu "Accounting > payment > SEPA direct debit mandates" +To use this module, see menu "Invoicing/Accounting > Payments > Debit Orders" .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/173/11.0 -Known issues / Roadmap -====================== - - * no known issues Bug Tracker =========== diff --git a/account_banking_mandate/__init__.py b/account_banking_mandate/__init__.py index cde864bae21..a9e3372262c 100644 --- a/account_banking_mandate/__init__.py +++ b/account_banking_mandate/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import models diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 77a3a602373..292e2242cc5 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -1,15 +1,13 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Compassion CH - Cyril Sester # Copyright 2014 Tecnativa - Pedro M. Baeza # Copyright 2015-16 Akretion - Alexis de Lattre # Copyright 2017 Tecnativa - Carlos Dauden -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', 'version': '11.0.1.0.0', - 'version': '10.0.1.1.3', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/models/__init__.py b/account_banking_mandate/models/__init__.py index 145c8921aff..d7b014c6984 100644 --- a/account_banking_mandate/models/__init__.py +++ b/account_banking_mandate/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import account_banking_mandate from . import account_payment_method diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 8224c0d1ab4..2c455003682 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza -# © 2015-2016 Akretion - Alexis de Lattre +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Tecnativa - Pedro M. Baeza +# Copyright 2015-16 Akretion - Alexis de Lattre # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api, _ @@ -79,6 +78,52 @@ def _check_dates(self): "before the date of signature." ) % mandate.unique_mandate_reference) + @api.constrains('company_id', 'payment_line_ids', 'partner_bank_id') + def _company_constrains(self): + for mandate in self: + if mandate.partner_bank_id.company_id and \ + mandate.partner_bank_id.company_id != mandate.company_id: + raise ValidationError( + _("The company of the mandate %s differs from the " + "company of partner %s.") % + (mandate.display_name, mandate.partner_id.name)) + + if self.env['account.payment.line'].search( + [('mandate_id', '=', mandate.id), + ('company_id', '=', mandate.company_id.id)], limit=1): + raise ValidationError( + _("You cannot change the company of mandate %s, " + "as there exists payment lines referencing it that " + "belong to another company.") % + (mandate.display_name, )) + + if self.env['account.invoice'].search( + [('mandate_id', '=', mandate.id), + ('company_id', '=', mandate.company_id.id)], limit=1): + raise ValidationError( + _("You cannot change the company of mandate %s, " + "as there exists invoices referencing it that belong to " + "another company.") % + (mandate.display_name, )) + + if self.env['account.move.line'].search( + [('mandate_id', '=', mandate.id), + ('company_id', '=', mandate.company_id.id)], limit=1): + raise ValidationError( + _("You cannot change the company of mandate %s, " + "as there exists journal items referencing it that " + "belong to another company.") % + (mandate.display_name, )) + + if self.env['bank.payment.line'].search( + [('mandate_id', '=', mandate.id), + ('company_id', '=', mandate.company_id.id)], limit=1): + raise ValidationError( + _("You cannot change the company of mandate %s, " + "as there exists bank payment lines referencing it that " + "belong to another company.") % + (mandate.display_name, )) + @api.multi @api.constrains('state', 'partner_bank_id') def _check_valid_state(self): diff --git a/account_banking_mandate/models/account_invoice.py b/account_banking_mandate/models/account_invoice.py index 455f90804cd..18184a76900 100644 --- a/account_banking_mandate/models/account_invoice.py +++ b/account_banking_mandate/models/account_invoice.py @@ -1,12 +1,12 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Compassion CH - Cyril Sester # Copyright 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza # Copyright 2016 Akretion (Alexis de Lattre ) # Copyright 2017 Carlos Dauden -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import models, fields, api +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class AccountInvoice(models.Model): @@ -36,7 +36,7 @@ def create(self, vals): creation, using same method as upstream.""" onchanges = { '_onchange_partner_id': ['mandate_id'], - 'payment_mode_id_change': ['mandate_id'], + '_onchange_payment_mode_id': ['mandate_id'], } for onchange_method, changed_fields in list(onchanges.items()): if any(f not in vals for f in changed_fields): @@ -45,7 +45,7 @@ def create(self, vals): for field in changed_fields: if field not in vals and invoice[field]: vals[field] = invoice._fields[field].convert_to_write( - invoice[field], + invoice[field], invoice, ) return super(AccountInvoice, self).create(vals) @@ -80,3 +80,13 @@ def _onchange_partner_id(self): def _onchange_payment_mode_id(self): super(AccountInvoice, self)._onchange_payment_mode_id() self.set_mandate() + + @api.constrains('mandate_id', 'company_id') + def _check_company_constrains(self): + for inv in self: + if inv.mandate_id.company_id and inv.mandate_id.company_id != \ + inv.company_id: + raise ValidationError(_( + "The invoice %s has a different company than " + "that of the linked mandate %s).") % + (inv.name, inv.mandate_id.display_name)) diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index 98e792633bc..e5e385d4750 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -1,10 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright Akretion (http://www.akretion.com/) # Copyright 2017 Carlos Dauden -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import models, fields, api +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class AccountMoveLine(models.Model): @@ -36,3 +36,14 @@ def _prepare_payment_line_vals(self, payment_order): 'partner_bank_id': mandate.partner_bank_id.id or partner_bank_id, }) return vals + + @api.multi + @api.constrains('mandate_id', 'company_id') + def _check_company_constrains(self): + for ml in self: + mandate = ml.mandate_id + if mandate.company_id and mandate.company_id != ml.company_id: + raise ValidationError(_( + "The item %s of journal %s has a different company than " + "that of the linked mandate %s).") % + (ml.name, ml.move_id.name, ml.mandate_id.display_name)) diff --git a/account_banking_mandate/models/account_payment_line.py b/account_banking_mandate/models/account_payment_line.py index d4677ac6d18..2177b1c5cf5 100644 --- a/account_banking_mandate/models/account_payment_line.py +++ b/account_banking_mandate/models/account_payment_line.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza -# © 2015-2016 Akretion - Alexis de Lattre +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Tecnativa - Pedro M. Baeza +# Copyright 2015-16 Akretion - Alexis de Lattre # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api, _ @@ -33,6 +32,18 @@ def _check_mandate_bank_link(self): pline.mandate_id.unique_mandate_reference, pline.mandate_id.partner_bank_id.acc_number)) + @api.multi + @api.constrains('mandate_id', 'company_id') + def _check_company_constrains(self): + for pline in self: + if pline.mandate_id.company_id and pline.mandate_id.company_id != \ + pline.company_id: + raise ValidationError(_( + "The payment line number %s a different company than " + "that of the linked mandate %s).") % + (pline.name, + pline.mandate_id.display_name)) + @api.multi def draft2open_payment_line_check(self): res = super(AccountPaymentLine, self).draft2open_payment_line_check() diff --git a/account_banking_mandate/models/account_payment_method.py b/account_banking_mandate/models/account_payment_method.py index 66a10e2afb2..a453a0eb443 100644 --- a/account_banking_mandate/models/account_payment_method.py +++ b/account_banking_mandate/models/account_payment_method.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- -# © 2016 Akretion (Alexis de Lattre ) +# Copyright 2016 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields diff --git a/account_banking_mandate/models/bank_payment_line.py b/account_banking_mandate/models/bank_payment_line.py index 4b583a71c3f..b4be429cb2f 100644 --- a/account_banking_mandate/models/bank_payment_line.py +++ b/account_banking_mandate/models/bank_payment_line.py @@ -1,10 +1,10 @@ -# -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza -# © 2015-2016 Akretion - Alexis de Lattre +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# Copyright 2015-16 Akretion - Alexis de Lattre # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import models, fields, api +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class BankPaymentLine(models.Model): @@ -20,3 +20,13 @@ def same_fields_payment_line_and_bank_payment_line(self): same_fields_payment_line_and_bank_payment_line() res.append('mandate_id') return res + + @api.constrains('mandate_id', 'company_id') + def _check_company_constrains(self): + for line in self: + if line.mandate_id.company_id and line.mandate_id.company_id != \ + line.company_id: + raise ValidationError(_( + "The bank payment line %s has a different company than " + "that of the linked mandate %s).") % + (line.name, line.mandate_id.display_name)) diff --git a/account_banking_mandate/models/res_partner.py b/account_banking_mandate/models/res_partner.py index f59a7ea7379..8bfa022a08e 100644 --- a/account_banking_mandate/models/res_partner.py +++ b/account_banking_mandate/models/res_partner.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Akretion (Alexis de Lattre ) # Copyright 2017 Carlos Dauden -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import models, fields, api @@ -14,7 +13,7 @@ class ResPartner(models.Model): readonly=True) valid_mandate_id = fields.Many2one( comodel_name='account.banking.mandate', - compute='compute_valid_mandate_id', + compute='_compute_valid_mandate_id', string='First Valid Mandate') @api.multi @@ -28,8 +27,15 @@ def _compute_mandate_count(self): partner.mandate_count = mapped_data.get(partner.id, 0) @api.multi - def compute_valid_mandate_id(self): + def _compute_valid_mandate_id(self): # Dict for reducing the duplicated searches on parent/child partners + company_id = self.env.context.get('force_company', False) + if company_id: + company = self.env['res.company'].browse(company_id) + else: + company = self.env['res.company']._company_default_get( + 'account.banking.mandate') + mandates_dic = {} for partner in self: commercial_partner_id = partner.commercial_partner_id.id @@ -37,7 +43,8 @@ def compute_valid_mandate_id(self): partner.valid_mandate_id = mandates_dic[commercial_partner_id] else: mandates = partner.commercial_partner_id.bank_ids.mapped( - 'mandate_ids').filtered(lambda x: x.state == 'valid') + 'mandate_ids').filtered( + lambda x: x.state == 'valid' and x.company_id == company) first_valid_mandate_id = mandates[:1].id partner.valid_mandate_id = first_valid_mandate_id mandates_dic[commercial_partner_id] = first_valid_mandate_id diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py index 01263410e6d..b1b662e330c 100644 --- a/account_banking_mandate/models/res_partner_bank.py +++ b/account_banking_mandate/models/res_partner_bank.py @@ -1,9 +1,9 @@ -# -*- coding: utf-8 -*- -# © 2014 Compassion CH - Cyril Sester -# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza +# Copyright 2014 Compassion CH - Cyril Sester +# Copyright 2014 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import models, fields +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class ResPartnerBank(models.Model): @@ -14,3 +14,15 @@ class ResPartnerBank(models.Model): string='Direct Debit Mandates', help='Banking mandates represent an authorization that the bank ' 'account owner gives to a company for a specific operation.') + + @api.constrains('company_id', 'mandate_ids') + def _company_constrains(self): + for rpb in self: + if self.env['account.banking.mandate'].search( + [('partner_bank_id', '=', rpb.id), + ('company_id', '=', rpb.company_id.id)], limit=1): + raise ValidationError( + _("You cannot change the company of Partner Bank %s, " + "as there exists mandates referencing it that " + "belong to another company.") % + (rpb.name,)) diff --git a/account_banking_mandate/security/mandate_security.xml b/account_banking_mandate/security/mandate_security.xml index bff46c5e567..4dd34b7ddcb 100644 --- a/account_banking_mandate/security/mandate_security.xml +++ b/account_banking_mandate/security/mandate_security.xml @@ -1,6 +1,6 @@ diff --git a/account_banking_mandate/tests/__init__.py b/account_banking_mandate/tests/__init__.py index 15cf9fc5718..fe40c01c2d7 100644 --- a/account_banking_mandate/tests/__init__.py +++ b/account_banking_mandate/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import test_mandate from . import test_invoice_mandate diff --git a/account_banking_mandate/tests/test_invoice_mandate.py b/account_banking_mandate/tests/test_invoice_mandate.py index 485e2507f3b..c05bce6c30f 100644 --- a/account_banking_mandate/tests/test_invoice_mandate.py +++ b/account_banking_mandate/tests/test_invoice_mandate.py @@ -1,15 +1,25 @@ -# -*- coding: utf-8 -*- -# © 2017 Creu Blanca + +# Copyright 2017 Creu Blanca # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo.tests.common import TransactionCase +from odoo.exceptions import ValidationError class TestInvoiceMandate(TransactionCase): - def test_post_invoice_and_refund(self): + def test_post_invoice_01(self): self.invoice._onchange_partner_id() + + self.assertEqual(self.invoice.mandate_id, self.mandate) + self.invoice.action_invoice_open() + + payable_move_lines = self.invoice.move_id.line_ids.filtered( + lambda s: s.account_id == self.invoice_account) + if payable_move_lines: + self.assertEqual(payable_move_lines[0].mandate_id, self.mandate) + self.env['account.invoice.payment.line.multi'].with_context( active_model='account.invoice', active_ids=self.invoice.ids @@ -17,41 +27,198 @@ def test_post_invoice_and_refund(self): payment_order = self.env['account.payment.order'].search([]) self.assertEqual(len(payment_order.ids), 1) + payment_order.payment_mode_id_change() payment_order.draft2open() payment_order.open2generated() payment_order.generated2uploaded() - def test_post_invoice_and_refund(self): + def test_post_invoice_02(self): + partner_2 = self._create_res_partner('Jane with ACME Bank') + partner_2.customer_payment_mode_id = self.mode_inbound_acme + bank_account = self.env['res.partner.bank'].create({ + 'acc_number': '0023032234211', + 'partner_id': partner_2.id, + 'bank_id': self.acme_bank.id, + 'company_id': self.company_2.id + }) + + mandate_2 = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company_2.id, + }) + mandate_2.validate() + + self.invoice._onchange_partner_id() + self.assertEqual(self.invoice.mandate_id, self.mandate) + self.invoice.action_invoice_open() + + payable_move_lines = self.invoice.move_id.line_ids.filtered( + lambda s: s.account_id == self.invoice_account) + if payable_move_lines: + with self.assertRaises(ValidationError): + payable_move_lines[0].mandate_id = mandate_2 + + def test_post_invoice_and_refund_02(self): self.invoice._onchange_partner_id() self.invoice.action_invoice_open() self.assertEqual(self.invoice.mandate_id, self.mandate) self.invoice.refund() + def test_onchange_partner(self): + partner_2 = self._create_res_partner('Jane with ACME Bank') + partner_2.customer_payment_mode_id = self.mode_inbound_acme + bank_account = self.env['res.partner.bank'].create({ + 'acc_number': '0023032234211', + 'partner_id': partner_2.id, + 'bank_id': self.acme_bank.id, + 'company_id': self.company.id + }) + + mandate_2 = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + mandate_2.validate() + + invoice = self.env['account.invoice'].new({ + 'partner_id': self.partner.id, + 'account_id': self.invoice_account.id, + 'type': 'out_invoice', + 'company_id': self.company.id, + }) + + invoice.partner_id = partner_2 + invoice._onchange_partner_id() + self.assertEqual(invoice.mandate_id, mandate_2) + + def test_onchange_payment_mode(self): + invoice = self.env['account.invoice'].new({ + 'partner_id': self.partner.id, + 'account_id': self.invoice_account.id, + 'type': 'out_invoice', + 'company_id': self.company.id, + }) + invoice._onchange_partner_id() + + pay_method_test = self.env['account.payment.method'].create({ + 'name': 'Test', + 'code': 'test', + 'payment_type': 'inbound', + 'mandate_required': False + }) + mode_inbound_acme_2 = self.env['account.payment.mode'].create({ + 'name': 'Inbound Credit ACME Bank 2', + 'company_id': self.company.id, + 'bank_account_link': 'variable', + 'payment_method_id': pay_method_test.id, + }) + + invoice.payment_mode_id = mode_inbound_acme_2 + invoice._onchange_payment_mode_id() + self.assertEqual(invoice.mandate_id, self.env[ + 'account.banking.mandate']) + + def test_invoice_constrains(self): + partner_2 = self._create_res_partner('Jane with ACME Bank') + partner_2.customer_payment_mode_id = self.mode_inbound_acme + bank_account = self.env['res.partner.bank'].create({ + 'acc_number': '0023032234211', + 'partner_id': partner_2.id, + 'bank_id': self.acme_bank.id, + 'company_id': self.company_2.id + }) + + mandate_2 = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company_2.id, + }) + mandate_2.validate() + + invoice = self.env['account.invoice'].create({ + 'partner_id': self.partner.id, + 'account_id': self.invoice_account.id, + 'type': 'out_invoice', + 'company_id': self.company.id, + }) + + with self.assertRaises(ValidationError): + invoice.mandate_id = mandate_2 + + def _create_res_partner(self, name): + return self.env['res.partner'].create({ + 'name': name + }) + + def _create_res_bank(self, name, bic, city, country): + return self.env['res.bank'].create({ + 'name': name, + 'bic': bic, + 'city': city, + 'country': country.id, + }) + def setUp(self): res = super(TestInvoiceMandate, self).setUp() - self.partner = self.env.ref('base.res_partner_12') - bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + self.company = self.env.ref('base.main_company') + + self.partner = self._create_res_partner('Peter with ACME Bank') + self.acme_bank = self._create_res_bank('ACME Bank', 'GEBABEBB03B', + 'Charleroi', + self.env.ref('base.be')) + + bank_account = self.env['res.partner.bank'].create({ + 'acc_number': '0023032234211123', + 'partner_id': self.partner.id, + 'bank_id': self.acme_bank.id, + 'company_id': self.company.id + }) + + self.company_2 = self.env['res.company'].create({ + 'name': 'Company 2', + }) + self.mandate = self.env['account.banking.mandate'].create({ 'partner_bank_id': bank_account.id, 'signature_date': '2015-01-01', + 'company_id': self.company.id, }) + self.mandate.validate() - mode = self.env.ref('account_payment_mode.payment_mode_inbound_ct1') - self.partner.customer_payment_mode_id = mode - mode.payment_method_id.mandate_required = True - invoice_account = self.env['account.account'].search( + + self.mode_inbound_acme = self.env['account.payment.mode'].create({ + 'name': 'Inbound Credit ACME Bank', + 'company_id': self.company.id, + 'bank_account_link': 'variable', + 'payment_method_id': + self.env.ref('account.account_payment_method_manual_in').id, + }) + bank_journal = self.env['account.journal'].search( + [('type', '=', 'bank')], limit=1) + self.mode_inbound_acme.variable_journal_ids = bank_journal + self.mode_inbound_acme.payment_method_id.mandate_required = True + self.mode_inbound_acme.payment_order_ok = True + + self.partner.customer_payment_mode_id = self.mode_inbound_acme + + self.invoice_account = self.env['account.account'].search( [('user_type_id', '=', self.env.ref( - 'account.data_account_type_payable').id)], - limit=1).id + 'account.data_account_type_receivable').id), + ('company_id', '=', self.company.id)], + limit=1) invoice_line_account = self.env['account.account'].search( [('user_type_id', '=', self.env.ref( - 'account.data_account_type_expenses').id)], + 'account.data_account_type_expenses').id), + ('company_id', '=', self.company.id)], limit=1).id self.invoice = self.env['account.invoice'].create({ 'partner_id': self.partner.id, - 'account_id': invoice_account, - 'type': 'out_invoice' + 'account_id': self.invoice_account.id, + 'type': 'out_invoice', + 'company_id': self.company.id, }) self.env['account.invoice.line'].create({ diff --git a/account_banking_mandate/tests/test_mandate.py b/account_banking_mandate/tests/test_mandate.py index db14316ce4d..b113ba7e511 100644 --- a/account_banking_mandate/tests/test_mandate.py +++ b/account_banking_mandate/tests/test_mandate.py @@ -1,17 +1,20 @@ -# -*- coding: utf-8 -*- # © 2016 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo.tests.common import TransactionCase +from odoo import fields +from odoo.exceptions import UserError, ValidationError +from datetime import timedelta class TestMandate(TransactionCase): - def test_mandate(self): + def test_mandate_01(self): bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') mandate = self.env['account.banking.mandate'].create({ 'partner_bank_id': bank_account.id, 'signature_date': '2015-01-01', + 'company_id': self.company.id, }) self.assertEqual(mandate.state, 'draft') mandate.validate() @@ -21,3 +24,113 @@ def test_mandate(self): self.assertEqual(mandate.state, 'cancel') mandate.back2draft() self.assertEqual(mandate.state, 'draft') + + def test_mandate_02(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + with self.assertRaises(UserError): + mandate.back2draft() + + def test_mandate_03(self): + bank_account = self.env.ref( + 'account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + mandate.validate() + + with self.assertRaises(UserError): + mandate.validate() + + def test_mandate_04(self): + bank_account = self.env.ref( + 'account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + mandate.validate() + mandate.cancel() + with self.assertRaises(UserError): + mandate.cancel() + + def test_onchange_methods(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].new({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + bank_account_2 = self.env.ref( + 'account_payment_mode.res_partner_2_iban') + mandate.partner_bank_id = bank_account_2 + mandate.mandate_partner_bank_change() + self.assertEquals(mandate.partner_id, bank_account_2.partner_id) + + def test_constrains_01(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + mandate.validate() + with self.assertRaises(ValidationError): + mandate.signature_date = fields.Date.to_string( + fields.Date.from_string( + fields.Date.context_today(mandate)) + timedelta(days=1)) + + def test_constrains_02(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + + with self.assertRaises(ValidationError): + mandate.company_id = self.company_2 + + def test_constrains_03(self): + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + bank_account_2 = self.env.ref( + 'account_payment_mode.res_partner_2_iban') + bank_account_2.company_id = self.company_2 + + with self.assertRaises(ValidationError): + mandate.partner_bank_id = bank_account_2 + + def test_constrains_04(self): + mandate = self.env['account.banking.mandate'].create({ + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + bank_account_2 = self.env.ref( + 'account_payment_mode.res_partner_2_iban') + bank_account_2.company_id = self.company_2 + + with self.assertRaises(ValidationError): + bank_account_2.mandate_ids += mandate + + def setUp(self): + res = super(TestMandate, self).setUp() + # Company + self.company = self.env.ref('base.main_company') + + # Company 2 + self.company_2 = self.env['res.company'].create({ + 'name': 'Company 2', + }) + return res From cdfca97f2550730f749aaaa2588aa2aefcf7117b Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 25 Nov 2017 02:20:27 +0100 Subject: [PATCH 023/118] OCA Transbot updated translations from Transifex --- .../i18n/account_banking_mandate.pot | 463 ++++++++++++++++++ account_banking_mandate/i18n/am.po | 198 +++++--- account_banking_mandate/i18n/ar.po | 201 +++++--- account_banking_mandate/i18n/ca.po | 198 +++++--- account_banking_mandate/i18n/cs.po | 198 +++++--- account_banking_mandate/i18n/da_DK.po | 143 +++++- account_banking_mandate/i18n/de.po | 156 +++++- account_banking_mandate/i18n/el_GR.po | 201 +++++--- account_banking_mandate/i18n/es.po | 190 +++++-- account_banking_mandate/i18n/es_CR.po | 201 +++++--- account_banking_mandate/i18n/es_EC.po | 201 +++++--- account_banking_mandate/i18n/es_ES.po | 201 +++++--- account_banking_mandate/i18n/es_MX.po | 201 +++++--- account_banking_mandate/i18n/es_VE.po | 201 +++++--- account_banking_mandate/i18n/et.po | 198 +++++--- account_banking_mandate/i18n/fi.po | 144 +++++- account_banking_mandate/i18n/fr.po | 166 ++++++- account_banking_mandate/i18n/gl.po | 198 +++++--- account_banking_mandate/i18n/hr.po | 146 +++++- account_banking_mandate/i18n/it.po | 144 +++++- account_banking_mandate/i18n/lt.po | 201 +++++--- account_banking_mandate/i18n/nb_NO.po | 156 +++++- account_banking_mandate/i18n/nl.po | 185 +++++-- account_banking_mandate/i18n/nl_BE.po | 201 +++++--- account_banking_mandate/i18n/pl.po | 201 +++++--- account_banking_mandate/i18n/pt.po | 198 +++++--- account_banking_mandate/i18n/pt_BR.po | 157 +++++- account_banking_mandate/i18n/pt_PT.po | 144 +++++- account_banking_mandate/i18n/ro.po | 201 +++++--- account_banking_mandate/i18n/ru.po | 202 +++++--- account_banking_mandate/i18n/sl.po | 169 ++++++- account_banking_mandate/i18n/th.po | 198 +++++--- account_banking_mandate/i18n/tr.po | 198 +++++--- account_banking_mandate/i18n/vi.po | 198 +++++--- 34 files changed, 4615 insertions(+), 1943 deletions(-) create mode 100644 account_banking_mandate/i18n/account_banking_mandate.pot diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot new file mode 100644 index 00000000000..6f5bf6180e3 --- /dev/null +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -0,0 +1,463 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_banking_mandate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "A Banking Mandate is a document signed by your customer that gives you the autorization to do one or several operations on his bank account." +msgstr "" + +#. module: account_banking_mandate +#: sql_constraint:account.banking.mandate:0 +msgid "A Mandate with the same reference already exists for this company!" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate +msgid "A generic banking mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Activate this option if this payment method requires your customer to sign a direct debit mandate with your company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Back to Draft" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id +msgid "Bank Account" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_bank_payment_line +msgid "Bank Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Banking Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,name:account_banking_mandate.mandate_action +#: model:ir.ui.menu,name:account_banking_mandate.mandate_menu +msgid "Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_res_partner_bank_mandate_ids +msgid "Banking mandates represent an authorization that the bank account owner gives to a company for a specific operation." +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Basic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Cancel" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Cancelled" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#, python-format +msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#, python-format +msgid "Cannot validate the mandate '%s' without a date of signature." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action +msgid "Click to create a new Banking Mandate." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id +msgid "Company" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid +msgid "Created by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_date +msgid "Created on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_signature_date +msgid "Date of Signature of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_last_debit_date +msgid "Date of the Last Debit" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line_mandate_id +msgid "Direct Debit Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank_mandate_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form +msgid "Direct Debit Mandates" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name +msgid "Display Name" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Draft" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Expired" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Format" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Group By" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id +msgid "ID" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree +msgid "Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format +msgid "Mandate Format" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line_mandate_required +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method_mandate_required +msgid "Mandate Required" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#, python-format +msgid "Mandate should be in cancel state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#, python-format +msgid "Mandate should be in draft or valid state." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#, python-format +msgid "Mandate should be in draft state." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons +msgid "Mandate(s)" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree +msgid "Mandates" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 +#, python-format +msgid "Missing Mandate on payment line %s" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count +msgid "Number of Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state +msgid "Only valid mandates can be used in a payment line. A cancelled mandate is a mandate that has been cancelled by the customer." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id +msgid "Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_line +msgid "Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Reference" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Reference or Partner" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_payment_line_ids +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Related Payment Lines" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan +msgid "Scan of the Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Search Banking Mandates" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,format:0 +msgid "Sepa Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree +msgid "Signature Date" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "State" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state +msgid "Status" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "The bank payment line %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#, python-format +msgid "The date of signature of mandate '%s' is in the future!" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "The item %s of journal %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#, python-format +msgid "The mandate '%s' can't have a date of last debit before the date of signature." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "The payment line number %s a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 +#, python-format +msgid "The payment line number %s has the bank account '%s' which is not attached to the mandate '%s' (this mandate is attached to the bank account '%s')." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" +msgstr "" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,state:0 +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +msgid "Valid" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Validate" +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "You cannot change the company of Partner Bank %s, as there exists mandates referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "You cannot change the company of mandate %s, as there exists bank payment lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "You cannot change the company of mandate %s, as there exists invoices referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "You cannot change the company of mandate %s, as there exists journal items referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "You cannot change the company of mandate %s, as there exists payment lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?" +msgstr "" + diff --git a/account_banking_mandate/i18n/am.po b/account_banking_mandate/i18n/am.po index 3eb88a2f5cc..49c688428ab 100644 --- a/account_banking_mandate/i18n/am.po +++ b/account_banking_mandate/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-10 16:15+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/ar.po b/account_banking_mandate/i18n/ar.po index 021ce67c435..65132af8741 100644 --- a/account_banking_mandate/i18n/ar.po +++ b/account_banking_mandate/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/ca.po b/account_banking_mandate/i18n/ca.po index 771bde785f5..2deffda41f8 100644 --- a/account_banking_mandate/i18n/ca.po +++ b/account_banking_mandate/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-10 16:15+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/cs.po b/account_banking_mandate/i18n/cs.po index fef521c696b..e51b0979cab 100644 --- a/account_banking_mandate/i18n/cs.po +++ b/account_banking_mandate/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/da_DK.po b/account_banking_mandate/i18n/da_DK.po index 78f069b816a..ede3bc1ce6a 100644 --- a/account_banking_mandate/i18n/da_DK.po +++ b/account_banking_mandate/i18n/da_DK.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-08-18 00:42+0000\n" "PO-Revision-Date: 2016-10-19 23:44+0000\n" "Last-Translator: <>\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/da_DK/)\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/oca/OCA-bank-" +"payment-10-0/language/da_DK/)\n" +"Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -39,8 +40,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -99,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -107,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -122,6 +123,11 @@ msgstr "" msgid "Company" msgstr "Firma" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -173,12 +179,23 @@ msgstr "" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -232,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -260,7 +277,7 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" @@ -271,6 +288,11 @@ msgstr "" msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -294,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +411,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/de.po b/account_banking_mandate/i18n/de.po index 8508b529fb4..fd3c7e43a65 100644 --- a/account_banking_mandate/i18n/de.po +++ b/account_banking_mandate/i18n/de.po @@ -1,23 +1,21 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# Niki Waibel, 2016 -# Niki Waibel, 2016 -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 14:55+0000\n" -"PO-Revision-Date: 2016-12-27 12:33+0000\n" -"Last-Translator: Niki Waibel\n" -"Language-Team: German (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/de/)\n" +"POT-Creation-Date: 2018-03-09 14:56+0000\n" +"PO-Revision-Date: 2018-03-09 14:56+0000\n" +"Last-Translator: OCA Transbot , 2017\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" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -42,8 +40,8 @@ msgstr "Ein generisches Bankmandat" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -102,7 +100,7 @@ msgid "Cancelled" msgstr "Abgebrochen" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -110,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -125,6 +123,11 @@ msgstr "" msgid "Company" msgstr "Unternehmen" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -176,12 +179,23 @@ msgstr "Entwurf" msgid "Expired" msgstr "Abgelaufen" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "Format" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -235,19 +249,19 @@ msgid "Mandate Required" msgstr "Mandat erforderlich" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandate sollte im Abburchzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandat sollte im Entwurfs- oder Gültigzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "Mandate sollte im Entwurfszustand sein." @@ -263,7 +277,7 @@ msgid "Mandates" msgstr "Mandate" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" @@ -274,6 +288,11 @@ msgstr "" msgid "Number of Mandates" msgstr "Anzahl der Mandate" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -282,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Partner" @@ -297,6 +315,11 @@ msgstr "Zahlungszeilen" msgid "Payment Methods" msgstr "Zahlungsmethoden" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -337,7 +360,7 @@ msgstr "Datum der Unterschrift" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "State" -msgstr "Status" +msgstr "Bundesland" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state @@ -345,13 +368,42 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -359,13 +411,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "Art" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -382,6 +452,46 @@ msgstr "Gültig" msgid "Validate" msgstr "Bestätigen" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/el_GR.po b/account_banking_mandate/i18n/el_GR.po index ca460ecc297..c631c0f3a1b 100644 --- a/account_banking_mandate/i18n/el_GR.po +++ b/account_banking_mandate/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\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" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "Κωδικός" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index e77fd8e3028..417161ed84e 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -1,22 +1,21 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# OCA Transbot , 2016 -# Pedro M. Baeza , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 14:55+0000\n" -"PO-Revision-Date: 2016-12-27 13:24+0000\n" -"Last-Translator: Pedro M. Baeza \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/es/)\n" +"POT-Creation-Date: 2018-03-09 14:56+0000\n" +"PO-Revision-Date: 2018-03-09 14:56+0000\n" +"Last-Translator: OCA Transbot , 2017\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: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -24,7 +23,9 @@ msgstr "" msgid "" "A Banking Mandate is a document signed by your customer that gives you the " "autorization to do one or several operations on his bank account." -msgstr "Un mandato bancario es un documento firmado por su cliente que le da la autorización para hacer una o varias operaciones en su cuenta bancaria." +msgstr "" +"Un mandato bancario es un documento firmado por su cliente que le da la " +"autorización para hacer una o varias operaciones en su cuenta bancaria." #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 @@ -41,14 +42,16 @@ msgstr "Un mandato bancario genérico" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." -msgstr "Active esta opción si el método de pago requiere que su cliente firme un mandato con su compañía." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." +msgstr "" +"Active esta opción si el método de pago requiere que su cliente firme un " +"mandato con su compañía." #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Back to Draft" -msgstr "Volver a borrador" +msgstr "Devolver a borrador" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id @@ -58,7 +61,7 @@ msgstr "Cuenta bancaria" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner_bank msgid "Bank Accounts" -msgstr "Cuentas de banco" +msgstr "Cuentas bancarias" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_bank_payment_line @@ -82,7 +85,9 @@ msgstr "Mandatos bancarios" msgid "" "Banking mandates represent an authorization that the bank account owner " "gives to a company for a specific operation." -msgstr "Los mandatos bancarios representan una autorización que el propietario de la cuenta bancaria da a una compañía para una operación específica." +msgstr "" +"Los mandatos bancarios representan una autorización que el propietario de la " +"cuenta bancaria da a una compañía para una operación específica." #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 @@ -101,15 +106,17 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria asociada." +msgstr "" +"No se puede validar el mandato '%s' porque no tiene ninguna cuenta bancaria " +"asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." @@ -124,6 +131,11 @@ msgstr "Pulse para crear un mandato bancario nuevo." msgid "Company" msgstr "Compañía" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -175,12 +187,23 @@ msgstr "Borrador" msgid "Expired" msgstr "Expirado" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "Formato" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -234,19 +257,19 @@ msgid "Mandate Required" msgstr "Mandato requerido" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "El mandato debe estar en estado cancelado." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "El mandato debe estar en estado borrador o válido." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "El mandato debe estar en estado borrador." @@ -262,7 +285,7 @@ msgid "Mandates" msgstr "Mandatos" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "Falta el mandato en la línea de pago %s" @@ -273,15 +296,21 @@ msgstr "Falta el mandato en la línea de pago %s" msgid "Number of Mandates" msgstr "Número de mandatos" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "Único" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "Sólo se pueden usar mandatos validados en una línea de pago. Un mandato cancelado en un mandato que ha sido invalidado por el cliente." +msgstr "" +"Sólo se pueden usar mandatos validados en una línea de pago. Un mandato " +"cancelado en un mandato que ha sido invalidado por el cliente." #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Empresa" @@ -296,6 +325,11 @@ msgstr "Líneas de pago" msgid "Payment Methods" msgstr "Métodos de pago" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "Recurrente" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -344,26 +378,78 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La fecha de la firma del mandato '%s' no puede ser posterior a hoy." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "El mandato '%s' no puede tener una fecha de último cobro antes de la fecha de firma." +msgstr "" +"El mandato '%s' no puede tener una fecha de último cobro antes de la fecha " +"de firma." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "La línea de pago con el número %s tiene la cuenta bancaria '%s', que no tiene está asociada con el mandato '%s' (este mandato está asociado con la cuenta bancaria '%s')." +msgstr "" +"La línea de pago con el número %s tiene la cuenta bancaria '%s', que no " +"tiene está asociada con el mandato '%s' (este mandato está asociado con la " +"cuenta bancaria '%s')." + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "Tipo" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference @@ -381,9 +467,51 @@ msgstr "Válido" msgid "Validate" msgstr "Validar" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por error. ¿Desea continuar?" +msgstr "" +"Debe establecer un mandato de vuelta a borrador sólo si lo cancelo por " +"error. ¿Desea continuar?" diff --git a/account_banking_mandate/i18n/es_CR.po b/account_banking_mandate/i18n/es_CR.po index f3462ba3d45..94551fc9670 100644 --- a/account_banking_mandate/i18n/es_CR.po +++ b/account_banking_mandate/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/es_EC.po b/account_banking_mandate/i18n/es_EC.po index 84fd373c006..397e608a9e6 100644 --- a/account_banking_mandate/i18n/es_EC.po +++ b/account_banking_mandate/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/es_ES.po b/account_banking_mandate/i18n/es_ES.po index 997223bcb5c..baa929f4641 100644 --- a/account_banking_mandate/i18n/es_ES.po +++ b/account_banking_mandate/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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 (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\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" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/es_MX.po b/account_banking_mandate/i18n/es_MX.po index 6fb06a2c0b4..f056b8faa88 100644 --- a/account_banking_mandate/i18n/es_MX.po +++ b/account_banking_mandate/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/es_VE.po b/account_banking_mandate/i18n/es_VE.po index dc1f963c86c..512daf0c45e 100644 --- a/account_banking_mandate/i18n/es_VE.po +++ b/account_banking_mandate/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/et.po b/account_banking_mandate/i18n/et.po index 05fa4237378..b4c7a41d736 100644 --- a/account_banking_mandate/i18n/et.po +++ b/account_banking_mandate/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/fi.po b/account_banking_mandate/i18n/fi.po index 013ae0b775a..7547d625a87 100644 --- a/account_banking_mandate/i18n/fi.po +++ b/account_banking_mandate/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # Jarmo Kortetjärvi , 2016 # OCA Transbot , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-11-21 10:17+0000\n" "PO-Revision-Date: 2016-10-19 23:46+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/fi/)\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-bank-payment-10-0/" +"language/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -41,8 +42,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -101,7 +102,7 @@ msgid "Cancelled" msgstr "Peruutettu" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -109,7 +110,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -124,6 +125,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -175,12 +181,23 @@ msgstr "" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -234,19 +251,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -262,16 +279,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -280,7 +303,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -295,6 +317,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -343,13 +370,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -357,13 +413,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -380,6 +454,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/fr.po b/account_banking_mandate/i18n/fr.po index bd00f87c84c..0103ff399d9 100644 --- a/account_banking_mandate/i18n/fr.po +++ b/account_banking_mandate/i18n/fr.po @@ -1,21 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 +# Nicolas JEUDY , 2018 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2016-10-19 23:46+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/fr/)\n" +"POT-Creation-Date: 2018-02-10 02:10+0000\n" +"PO-Revision-Date: 2018-02-10 02:10+0000\n" +"Last-Translator: Nicolas JEUDY , 2018\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" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_banking_mandate @@ -33,15 +34,15 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_banking_mandate msgid "A generic banking mandate" -msgstr "" +msgstr "Un mandat bancaire générique" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -62,7 +63,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_bank_payment_line msgid "Bank Payment Lines" -msgstr "" +msgstr "Lignes de paiement bancaire" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -100,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -108,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -123,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "Contacte" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,12 +180,23 @@ msgstr "" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -193,7 +210,7 @@ msgstr "ID" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Facture" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line @@ -233,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -261,16 +278,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "One-Off" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Partenaire" @@ -287,12 +309,17 @@ msgstr "Partenaire" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" -msgstr "" +msgstr "Lignes de règlement" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_method msgid "Payment Methods" -msgstr "" +msgstr "Methodes de règlement" + +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "Récurrent" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree @@ -323,7 +350,7 @@ msgstr "" #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 msgid "Sepa Mandate" -msgstr "" +msgstr "Mandat SEPA" #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search @@ -342,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +412,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "Type" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "Valider" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/gl.po b/account_banking_mandate/i18n/gl.po index d4b0b3b8528..19eaa766a13 100644 --- a/account_banking_mandate/i18n/gl.po +++ b/account_banking_mandate/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-10 16:15+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/hr.po b/account_banking_mandate/i18n/hr.po index 862b11dc948..f66e11ae7f8 100644 --- a/account_banking_mandate/i18n/hr.po +++ b/account_banking_mandate/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "POT-Creation-Date: 2017-06-03 00:10+0000\n" "PO-Revision-Date: 2016-10-19 23:44+0000\n" "Last-Translator: <>\n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/hr/)\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" +"language/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -39,8 +41,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -99,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -107,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -122,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -173,12 +180,23 @@ msgstr "" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -232,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -260,7 +278,7 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" @@ -271,6 +289,11 @@ msgstr "" msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -294,6 +316,11 @@ msgstr "Stavke plaćanja" msgid "Payment Methods" msgstr "Metode plaćanja" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +412,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index 54eb2edaca9..5d689e4266c 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-21 10:17+0000\n" "PO-Revision-Date: 2016-10-19 23:46+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -40,8 +41,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -100,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -108,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -123,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,12 +180,23 @@ msgstr "" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -233,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -261,16 +278,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -294,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +412,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/lt.po b/account_banking_mandate/i18n/lt.po index 5c7674fd801..8d8fc3c56f1 100644 --- a/account_banking_mandate/i18n/lt.po +++ b/account_banking_mandate/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: lt\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" +"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_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/nb_NO.po b/account_banking_mandate/i18n/nb_NO.po index 2a7272156d1..7e0c74fdc98 100644 --- a/account_banking_mandate/i18n/nb_NO.po +++ b/account_banking_mandate/i18n/nb_NO.po @@ -1,21 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# Imre Kristoffer Eilertsen , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2016-10-19 23:47+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/nb_NO/)\n" +"POT-Creation-Date: 2017-12-11 09:50+0000\n" +"PO-Revision-Date: 2017-12-11 09:50+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" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -40,8 +41,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -100,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -108,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -123,6 +124,11 @@ msgstr "" msgid "Company" msgstr "Firma" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,12 +180,23 @@ msgstr "Drøfting" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -203,7 +220,7 @@ msgstr "Journalgjenstand" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" -msgstr "Sist modifisert den." +msgstr "Sist modifisert den" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_write_uid @@ -233,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -261,16 +278,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -294,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,13 +369,42 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +412,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/nl.po b/account_banking_mandate/i18n/nl.po index 9cd2f5b79ff..7106b6c8302 100644 --- a/account_banking_mandate/i18n/nl.po +++ b/account_banking_mandate/i18n/nl.po @@ -1,21 +1,21 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# Erwin van der Ploeg , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 14:55+0000\n" -"PO-Revision-Date: 2016-12-22 11:48+0000\n" -"Last-Translator: Erwin van der Ploeg \n" -"Language-Team: Dutch (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/nl/)\n" +"POT-Creation-Date: 2018-03-09 14:56+0000\n" +"PO-Revision-Date: 2018-03-09 14:56+0000\n" +"Last-Translator: OCA Transbot , 2017\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" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -23,7 +23,10 @@ msgstr "" msgid "" "A Banking Mandate is a document signed by your customer that gives you the " "autorization to do one or several operations on his bank account." -msgstr "Een bankmandaat is een document ondertekend door uw klant die autorisatie geeft om één of meerdere acties uit te voeren op de bankrekening van de klant." +msgstr "" +"Een bankmandaat is een document ondertekend door uw klant die autorisatie " +"geeft om één of meerdere acties uit te voeren op de bankrekening van de " +"klant." #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 @@ -40,9 +43,11 @@ msgstr "Een generiek bank mandaat" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." -msgstr "Activeer deze optie wanneer bij de betaalwijze uw klant verplicht is om een incasso mandaat met uw bedrijf te ondertekenen." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." +msgstr "" +"Activeer deze optie wanneer bij de betaalwijze uw klant verplicht is om een " +"incasso mandaat met uw bedrijf te ondertekenen." #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -81,7 +86,9 @@ msgstr "Bank mandaten" msgid "" "Banking mandates represent an authorization that the bank account owner " "gives to a company for a specific operation." -msgstr "Een bank mandaat wordt door de bankrekening eigenaar\n gegeven aan een bedrijf om een specifieke actie uit te kunnen voeren. " +msgstr "" +"Een bank mandaat wordt door de bankrekening eigenaar\n" +" gegeven aan een bedrijf om een specifieke actie uit te kunnen voeren. " #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 @@ -100,15 +107,17 @@ msgid "Cancelled" msgstr "Geannuleerd" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "Kan mandate '%s' niet valideren omdat deze niet aan een bankrekening gekoppeld is. " +msgstr "" +"Kan mandate '%s' niet valideren omdat deze niet aan een bankrekening " +"gekoppeld is. " #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Kan mandaat '%s' niet goedkeuren zonder een datum of handtekening." @@ -123,6 +132,11 @@ msgstr "Klik voor het aanmaken van een neuw mandaat." msgid "Company" msgstr "Bedrijf" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,12 +188,23 @@ msgstr "Concept" msgid "Expired" msgstr "Vervallen" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "Formaat" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -233,19 +258,19 @@ msgid "Mandate Required" msgstr "Bankrekening verplicht" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandaat moet in de 'annulleer' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandaat moet in de 'geldig' of 'concept' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "Mandaat moet in de 'concept' status zijn." @@ -261,7 +286,7 @@ msgid "Mandates" msgstr "Mandaten" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "Ontbrekende mandaat op betaalregel %s" @@ -272,15 +297,21 @@ msgstr "Ontbrekende mandaat op betaalregel %s" msgid "Number of Mandates" msgstr "Aantal mandaten" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "Eenmalig" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "Alleen gevalideerde bank mandaten kunnen worden gebruikt in betaalregels. Een geannuleerd mandaat is een mandaat dat geannuleerd is door de klant." +msgstr "" +"Alleen gevalideerde bank mandaten kunnen worden gebruikt in betaalregels. " +"Een geannuleerd mandaat is een mandaat dat geannuleerd is door de klant." #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Relatie" @@ -295,6 +326,11 @@ msgstr "Betaalregels" msgid "Payment Methods" msgstr "Betaalwijzes" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "Terugkerend" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -343,26 +379,77 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "De datum van de handtekening van mandaat '%s' is in de toekomts!" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "Mandaat '%s' kan geen datum van laatste debet hebben coor de datum van ondertekenen." +msgstr "" +"Mandaat '%s' kan geen datum van laatste debet hebben coor de datum van " +"ondertekenen." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." -msgstr "Betaalregelnummer %s heeft een bankrekeningnummer '%s' die niet gekoppeld is aan mandaat '%s' (dit mandaat is gekoppeld aan bankrekeningnummer '%s')." +msgstr "" +"Betaalregelnummer %s heeft een bankrekeningnummer '%s' die niet gekoppeld " +"is aan mandaat '%s' (dit mandaat is gekoppeld aan bankrekeningnummer '%s')." + +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "Soort" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference @@ -380,9 +467,51 @@ msgstr "Geldig" msgid "Validate" msgstr "Bevestig" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "Een mandaat moet alleen teruggezet worden naar concept wanneer u deze per ongeluk heeft geannuleerd. Wilt u verdergaan? " +msgstr "" +"Een mandaat moet alleen teruggezet worden naar concept wanneer u deze per " +"ongeluk heeft geannuleerd. Wilt u verdergaan? " diff --git a/account_banking_mandate/i18n/nl_BE.po b/account_banking_mandate/i18n/nl_BE.po index c7c7f3c5804..51f896771e4 100644 --- a/account_banking_mandate/i18n/nl_BE.po +++ b/account_banking_mandate/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/pl.po b/account_banking_mandate/i18n/pl.po index 65ba6a550c1..93871563d58 100644 --- a/account_banking_mandate/i18n/pl.po +++ b/account_banking_mandate/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/pt.po b/account_banking_mandate/i18n/pt.po index 0c6868ed6e1..877d989ab60 100644 --- a/account_banking_mandate/i18n/pt.po +++ b/account_banking_mandate/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-10 16:15+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/pt_BR.po b/account_banking_mandate/i18n/pt_BR.po index 86b9abb74b3..3b99c144268 100644 --- a/account_banking_mandate/i18n/pt_BR.po +++ b/account_banking_mandate/i18n/pt_BR.po @@ -1,21 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2016-10-19 23:47+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/pt_BR/)\n" +"POT-Creation-Date: 2018-03-09 14:56+0000\n" +"PO-Revision-Date: 2018-03-09 14:56+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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_banking_mandate @@ -40,8 +41,8 @@ msgstr "Uma ordem bancária genérica" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -100,15 +101,16 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." -msgstr "Não pode validar a ordem '%s' porque não está anexada a conta bancária." +msgstr "" +"Não pode validar a ordem '%s' porque não está anexada a conta bancária." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Não pode validar a ordem '%s' sem uma data de assinatura." @@ -123,6 +125,11 @@ msgstr "" msgid "Company" msgstr "Empresa" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,12 +181,23 @@ msgstr "Provisório" msgid "Expired" msgstr "Expirado" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -233,19 +251,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -261,16 +279,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -279,7 +303,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Parceiro" @@ -294,6 +317,11 @@ msgstr "Linhas do pagamento" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,13 +370,42 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -356,13 +413,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,6 +454,46 @@ msgstr "" msgid "Validate" msgstr "Validar" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/pt_PT.po b/account_banking_mandate/i18n/pt_PT.po index 1b3bcc86315..2fcbfb581d9 100644 --- a/account_banking_mandate/i18n/pt_PT.po +++ b/account_banking_mandate/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 # Pedro Castro Silva , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-11-21 10:17+0000\n" "PO-Revision-Date: 2016-10-19 23:45+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-bank-" +"payment-10-0/language/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_banking_mandate @@ -41,8 +42,8 @@ msgstr "" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -101,7 +102,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -109,7 +110,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -124,6 +125,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -175,12 +181,23 @@ msgstr "Rascunho" msgid "Expired" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -234,19 +251,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -262,16 +279,22 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" @@ -280,7 +303,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -295,6 +317,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -343,13 +370,42 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -357,13 +413,31 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -380,6 +454,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/ro.po b/account_banking_mandate/i18n/ro.po index abc1c407f99..df898a18a58 100644 --- a/account_banking_mandate/i18n/ro.po +++ b/account_banking_mandate/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -35,18 +36,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +101,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +109,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +124,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +149,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +165,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +181,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +192,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +207,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +278,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +302,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +316,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +369,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +412,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +428,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +453,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/ru.po b/account_banking_mandate/i18n/ru.po index e58b310842a..aa750e0949f 100644 --- a/account_banking_mandate/i18n/ru.po +++ b/account_banking_mandate/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,13 @@ msgstr "" "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" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"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_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -35,18 +37,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +102,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +110,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +125,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +150,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +166,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +182,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +193,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +208,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +251,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +279,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +303,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +317,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +370,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +413,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +429,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +454,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/sl.po b/account_banking_mandate/i18n/sl.po index 7e5e42b24aa..7c6eb67b540 100644 --- a/account_banking_mandate/i18n/sl.po +++ b/account_banking_mandate/i18n/sl.po @@ -1,22 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: bank-payment (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2016-10-19 23:47+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-payment-10-0/language/sl/)\n" +"POT-Creation-Date: 2018-03-09 14:56+0000\n" +"PO-Revision-Date: 2018-03-09 14:56+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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: account_banking_mandate #: model:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -40,8 +41,8 @@ msgstr "Generični bančni mandat" #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -100,7 +101,7 @@ msgid "Cancelled" msgstr "Preklicano" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -108,7 +109,7 @@ msgid "" msgstr "Mandata '%s' ni mogoče overiti, ker ni pripet bančnemu računu." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Mandata '%s' ni mogoče overiti brez datuma podpisa." @@ -123,6 +124,11 @@ msgstr "" msgid "Company" msgstr "Družba" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -174,16 +180,27 @@ msgstr "Osnutek" msgid "Expired" msgstr "Pretečeni" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" msgstr "Format" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" -msgstr "Zfruži po" +msgstr "Združi po" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_id @@ -233,19 +250,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -261,25 +278,32 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "One-Off" +msgstr "Enkratna" + #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_state msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." -msgstr "V postavki plačila se lahko uporabijo le veljavni mandati. Preklican mandat je mandat, ki ga je kupec preklical." +msgstr "" +"V postavki plačila se lahko uporabijo le veljavni mandati. Preklican mandat " +"je mandat, ki ga je kupec preklical." #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "Partner" @@ -294,6 +318,11 @@ msgstr "Plačilne postavke" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "Ponavljajoče se" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -342,27 +371,75 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." -msgstr "Mandat '%s' ne sme imeti datuma zadnje obremenitve pred datumom podpisa." +msgstr "" +"Mandat '%s' ne sme imeti datuma zadnje obremenitve pred datumom podpisa." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +#. module: account_banking_mandate +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" +msgstr "Tip" + +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference msgid "Unique Mandate Reference" @@ -379,9 +456,51 @@ msgstr "Veljaven" msgid "Validate" msgstr "Potrdi" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" -msgstr "Mandat ponastavite v osnutek le, če ste ga pomotoma preklicali. Želite nadaljevati?" +msgstr "" +"Mandat ponastavite v osnutek le, če ste ga pomotoma preklicali. Želite " +"nadaljevati?" diff --git a/account_banking_mandate/i18n/th.po b/account_banking_mandate/i18n/th.po index 69c2920fb52..cb8d8af2d1c 100644 --- a/account_banking_mandate/i18n/th.po +++ b/account_banking_mandate/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/tr.po b/account_banking_mandate/i18n/tr.po index 0b6299598ad..37a9e7b6564 100644 --- a/account_banking_mandate/i18n/tr.po +++ b/account_banking_mandate/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-10 16:15+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" diff --git a/account_banking_mandate/i18n/vi.po b/account_banking_mandate/i18n/vi.po index 128b2bdb9db..0dffcfc064e 100644 --- a/account_banking_mandate/i18n/vi.po +++ b/account_banking_mandate/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_banking_mandate -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_banking_mandate @@ -35,18 +35,13 @@ msgstr "" msgid "A generic banking mandate" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "Action Needed" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_line_mandate_required #: model:ir.model.fields,help:account_banking_mandate.field_account_payment_method_mandate_required msgid "" -"Activate this option if this payment method requires your customer to sign a" -" direct debit mandate with your company." +"Activate this option if this payment method requires your customer to sign a " +"direct debit mandate with your company." msgstr "" #. module: account_banking_mandate @@ -105,7 +100,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:88 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -113,7 +108,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:84 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -128,6 +123,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_banking_mandate +#: model:ir.model,name:account_banking_mandate.model_res_partner +msgid "Contact" +msgstr "" + #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid msgid "Created by" @@ -148,11 +148,6 @@ msgstr "" msgid "Date of the Last Debit" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_account_move_line_mandate_id @@ -169,7 +164,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name -msgid "Display name" +msgid "Display Name" msgstr "" #. module: account_banking_mandate @@ -185,18 +180,9 @@ msgid "Expired" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_valid_mandate_id +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_valid_mandate_id +msgid "First Valid Mandate" msgstr "" #. module: account_banking_mandate @@ -205,6 +191,11 @@ msgstr "" msgid "Format" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Generic Mandate" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Group By" @@ -215,36 +206,16 @@ msgstr "" msgid "ID" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_is_follower -msgid "Is Follower" -msgstr "" - #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line msgid "Journal Item" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update msgid "Last Modified on" @@ -278,19 +249,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:120 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:111 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -306,34 +277,20 @@ msgid "Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_ids -msgid "Messages" -msgstr "" - -#. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:40 +#: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" msgstr "" -#. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of Actions" -msgstr "" - #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_mandate_count +#: model:ir.model.fields,field_description:account_banking_mandate.field_res_users_mandate_count msgid "Number of Mandates" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: account_banking_mandate -#: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Number of unread messages" +#: selection:account.banking.mandate,type:0 +msgid "One-Off" msgstr "" #. module: account_banking_mandate @@ -344,7 +301,6 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model,name:account_banking_mandate.model_res_partner #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_id msgid "Partner" msgstr "" @@ -359,6 +315,11 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: selection:account.banking.mandate,type:0 +msgid "Recurrent" +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" @@ -407,13 +368,42 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:67 +#: code:addons/account_banking_mandate/models/bank_payment_line.py:29 +#, python-format +msgid "" +"The bank payment line %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#, python-format +msgid "The company of the mandate %s differs from the company of partner %s." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:73 +#: code:addons/account_banking_mandate/models/account_invoice.py:90 +#, python-format +msgid "" +"The invoice %s has a different company than that of the linked mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_move_line.py:46 +#, python-format +msgid "" +"The item %s of journal %s has a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -421,7 +411,15 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_payment_line.py:27 +#: code:addons/account_banking_mandate/models/account_payment_line.py:41 +#, python-format +msgid "" +"The payment line number %s a different company than that of the linked " +"mandate %s)." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_payment_line.py:26 #, python-format msgid "" "The payment line number %s has the bank account '%s' which is not attached " @@ -429,18 +427,18 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference -msgid "Unique Mandate Reference" +#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form +msgid "Type" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread -msgid "Unread Messages" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type +msgid "Type of Mandate" msgstr "" #. module: account_banking_mandate -#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_unique_mandate_reference +msgid "Unique Mandate Reference" msgstr "" #. module: account_banking_mandate @@ -454,6 +452,46 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/res_partner_bank.py:25 +#, python-format +msgid "" +"You cannot change the company of Partner Bank %s, as there exists mandates " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists bank payment " +"lines referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists invoices " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists journal items " +"referencing it that belong to another company." +msgstr "" + +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#, python-format +msgid "" +"You cannot change the company of mandate %s, as there exists payment lines " +"referencing it that belong to another company." +msgstr "" + #. module: account_banking_mandate #: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "" From 3e2d519adee9057bf9d7e36688810cfa08df1aab Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Mon, 27 Nov 2017 19:36:55 +0100 Subject: [PATCH 024/118] [FIX] account_banking_mandate: If Create and edit acc_number not set --- account_banking_mandate/__manifest__.py | 2 +- account_banking_mandate/views/account_banking_mandate_view.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 292e2242cc5..b189b65d56a 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '11.0.1.0.0', + 'version': '11.0.1.1.0', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 2e21d4ba48f..2e1a4ea6caa 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -32,6 +32,7 @@ Date: Wed, 7 Feb 2018 14:20:29 +0100 Subject: [PATCH 025/118] [FIX] minor fix --- .../models/account_banking_mandate.py | 10 +++++++++- .../models/res_partner_bank.py | 9 ++++----- .../views/account_banking_mandate_view.xml | 17 ++++++++++++++--- .../views/res_partner_bank_view.xml | 2 +- 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 2c455003682..65b14a04db2 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -18,6 +18,13 @@ class AccountBankingMandate(models.Model): _inherit = ['mail.thread'] _order = 'signature_date desc' + def _get_default_partner_bank_id_domain(self): + if 'default_partner_id' in self.env.context: + return [('partner_id', '=', self.env.context.get( + 'default_partner_id'))] + else: + return [] + format = fields.Selection( [('basic', 'Basic Mandate')], default='basic', required=True, string='Mandate Format', track_visibility='onchange') @@ -28,7 +35,8 @@ class AccountBankingMandate(models.Model): ) partner_bank_id = fields.Many2one( comodel_name='res.partner.bank', string='Bank Account', - track_visibility='onchange') + track_visibility='onchange', + domain=lambda self: self._get_default_partner_bank_id_domain(),) partner_id = fields.Many2one( comodel_name='res.partner', related='partner_bank_id.partner_id', string='Partner', store=True) diff --git a/account_banking_mandate/models/res_partner_bank.py b/account_banking_mandate/models/res_partner_bank.py index b1b662e330c..66a2442ca8e 100644 --- a/account_banking_mandate/models/res_partner_bank.py +++ b/account_banking_mandate/models/res_partner_bank.py @@ -15,14 +15,13 @@ class ResPartnerBank(models.Model): help='Banking mandates represent an authorization that the bank ' 'account owner gives to a company for a specific operation.') - @api.constrains('company_id', 'mandate_ids') + @api.constrains('company_id') def _company_constrains(self): for rpb in self: - if self.env['account.banking.mandate'].search( + if self.env['account.banking.mandate'].sudo().search( [('partner_bank_id', '=', rpb.id), - ('company_id', '=', rpb.company_id.id)], limit=1): + ('company_id', '!=', rpb.company_id.id)], limit=1): raise ValidationError( _("You cannot change the company of Partner Bank %s, " "as there exists mandates referencing it that " - "belong to another company.") % - (rpb.name,)) + "belong to another company.") % (rpb.display_name,)) diff --git a/account_banking_mandate/views/account_banking_mandate_view.xml b/account_banking_mandate/views/account_banking_mandate_view.xml index 2e1a4ea6caa..a681795644c 100644 --- a/account_banking_mandate/views/account_banking_mandate_view.xml +++ b/account_banking_mandate/views/account_banking_mandate_view.xml @@ -12,11 +12,14 @@
-
@@ -58,12 +61,20 @@ account.banking.mandate + +
+

- - -
@@ -56,6 +54,26 @@ + + view.mandate.form.buttons + account.banking.mandate + + + +
+ +
+
+
+ view.mandate.tree account.banking.mandate From e1f938f626d660be3466b44ee60047c217bb5c66 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Wed, 20 Mar 2019 18:15:50 +0000 Subject: [PATCH 041/118] [UPD] Update account_banking_mandate.pot --- .../i18n/account_banking_mandate.pot | 37 ++++++++++++------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot index c6281bcaf24..637521a6082 100644 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -101,13 +101,13 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:176 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -290,19 +290,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:224 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:212 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:203 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -379,6 +379,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -389,6 +394,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:98 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -406,7 +418,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -442,13 +453,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:129 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:113 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -466,7 +477,7 @@ msgid "The item %s of journal %s has a different company than that of the linked msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The mandate '%s' can't have a date of last debit before the date of signature." msgstr "" @@ -537,25 +548,25 @@ msgid "You cannot change the company of Partner Bank %s, as there exists mandate msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:164 #, python-format msgid "You cannot change the company of mandate %s, as there exists bank payment lines referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:146 #, python-format msgid "You cannot change the company of mandate %s, as there exists invoices referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:155 #, python-format msgid "You cannot change the company of mandate %s, as there exists journal items referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:137 #, python-format msgid "You cannot change the company of mandate %s, as there exists payment lines referencing it that belong to another company." msgstr "" From e9dd289d87a439a9e94b80618ec985c74d640e97 Mon Sep 17 00:00:00 2001 From: Marco Calcagni Date: Wed, 3 Apr 2019 10:37:21 +0000 Subject: [PATCH 042/118] Translated using Weblate (Italian) Currently translated at 37.3% (38 of 102 strings) Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/it/ --- account_banking_mandate/i18n/it.po | 91 ++++++++++++++++-------------- 1 file changed, 50 insertions(+), 41 deletions(-) diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index db09d91afc5..dfd44e25b7c 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2016-10-19 23:46+0000\n" -"Last-Translator: OCA Transbot \n" +"PO-Revision-Date: 2019-04-03 12:14+0000\n" +"Last-Translator: Marco Calcagni \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" "language/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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. module: account_banking_mandate #: model_terms:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -39,7 +40,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_needaction msgid "Action Needed" -msgstr "" +msgstr "Richiede un azione" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice__mandate_required @@ -58,17 +59,17 @@ msgstr "" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Back to Draft" -msgstr "" +msgstr "Reimposta a Bozza" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__partner_bank_id msgid "Bank Account" -msgstr "" +msgstr "Conto Bancario" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Conti Bancari" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_bank_payment_line @@ -79,13 +80,13 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Banking Mandate" -msgstr "" +msgstr "Mandato Bancario" #. module: account_banking_mandate #: model:ir.actions.act_window,name:account_banking_mandate.mandate_action #: model:ir.ui.menu,name:account_banking_mandate.mandate_menu msgid "Banking Mandates" -msgstr "" +msgstr "Mandati Bancari" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_setup_bank_manual_config__mandate_ids @@ -98,7 +99,7 @@ msgstr "" #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 msgid "Basic Mandate" -msgstr "" +msgstr "Mandato Basic" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -110,7 +111,7 @@ msgstr "Annulla" #: selection:account.banking.mandate,state:0 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Cancelled" -msgstr "" +msgstr "Annullato" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 @@ -129,17 +130,18 @@ msgstr "" #. module: account_banking_mandate #: model_terms:ir.actions.act_window,help:account_banking_mandate.mandate_action msgid "Click to create a new Banking Mandate." -msgstr "" +msgstr "Cliccare per creare un nuovo Mandato Bancario." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__company_id +#, fuzzy msgid "Company" -msgstr "" +msgstr "Company" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner msgid "Contact" -msgstr "" +msgstr "Contatto" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__create_uid @@ -154,12 +156,12 @@ msgstr "Creato il" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__signature_date msgid "Date of Signature of the Mandate" -msgstr "" +msgstr "Data di firma del Mandato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__last_debit_date msgid "Date of the Last Debit" -msgstr "" +msgstr "Data dell'ultimo Addebito" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice__mandate_id @@ -167,14 +169,14 @@ msgstr "" #: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line__mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_bank_payment_line__mandate_id msgid "Direct Debit Mandate" -msgstr "" +msgstr "Mandato Addebito Diretto" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_setup_bank_manual_config__mandate_ids #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner_bank__mandate_ids #: model_terms:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_form msgid "Direct Debit Mandates" -msgstr "" +msgstr "Mandato Addebito Diretto" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__display_name @@ -186,34 +188,37 @@ msgstr "Nome da visualizzare" #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Draft" -msgstr "" +msgstr "Bozza" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Expired" -msgstr "" +msgstr "Scaduto" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner__valid_mandate_id #: model:ir.model.fields,field_description:account_banking_mandate.field_res_users__valid_mandate_id msgid "First Valid Mandate" -msgstr "" +msgstr "Primo Mandato Valido" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_follower_ids +#, fuzzy msgid "Followers" -msgstr "" +msgstr "Followers" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_channel_ids +#, fuzzy msgid "Followers (Channels)" -msgstr "" +msgstr "Followers (Channels)" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_partner_ids +#, fuzzy msgid "Followers (Partners)" -msgstr "" +msgstr "Followers (Partners)" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -224,12 +229,13 @@ msgstr "" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Generic Mandate" -msgstr "" +msgstr "Mandato Generico" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search +#, fuzzy msgid "Group By" -msgstr "" +msgstr "Group By" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__id @@ -239,32 +245,34 @@ msgstr "ID" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_unread msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se selezionato un nuovo messaggio richiede la tua attenzione." #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_needaction msgid "If checked, new messages require your attention." -msgstr "" +msgstr "Se selezionato un nuovo messaggio richiede la tua attenzione." #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_has_error msgid "If checked, some messages have a delivery error." -msgstr "" +msgstr "Se selezionato, un messaggio ha errori in consegna." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Fattura" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_is_follower +#, fuzzy msgid "Is Follower" -msgstr "" +msgstr "Is Follower" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line +#, fuzzy msgid "Journal Item" -msgstr "" +msgstr "Riga di Registro" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate____last_update @@ -284,24 +292,25 @@ msgstr "Ultimo aggiornamento il" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_main_attachment_id msgid "Main Attachment" -msgstr "" +msgstr "Allegato principale" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree msgid "Mandate" -msgstr "" +msgstr "Mandato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__format +#, fuzzy msgid "Mandate Format" -msgstr "" +msgstr "Formato del Mandato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_invoice__mandate_required #: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_line__mandate_required #: model:ir.model.fields,field_description:account_banking_mandate.field_account_payment_method__mandate_required msgid "Mandate Required" -msgstr "" +msgstr "Mandato Richiesto" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 @@ -324,12 +333,12 @@ msgstr "" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons msgid "Mandate(s)" -msgstr "" +msgstr "Mandato/i" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree msgid "Mandates" -msgstr "" +msgstr "Mandati" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_has_error @@ -339,7 +348,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_ids msgid "Messages" -msgstr "" +msgstr "Messaggi" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:51 @@ -356,12 +365,12 @@ msgstr "" #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner__mandate_count #: model:ir.model.fields,field_description:account_banking_mandate.field_res_users__mandate_count msgid "Number of Mandates" -msgstr "" +msgstr "Numero di Mandati" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_has_error_counter msgid "Number of error" -msgstr "" +msgstr "Numero di Errori" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_needaction_counter From 90d00f444f2f798b311140182440def8d04aa5b3 Mon Sep 17 00:00:00 2001 From: Marco Calcagni Date: Sat, 6 Apr 2019 20:41:04 +0000 Subject: [PATCH 043/118] Translated using Weblate (Italian) Currently translated at 71.6% (73 of 102 strings) Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/it/ --- account_banking_mandate/i18n/it.po | 81 ++++++++++++++++++------------ 1 file changed, 48 insertions(+), 33 deletions(-) diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index dfd44e25b7c..1fa4f8ea703 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2019-04-03 12:14+0000\n" +"PO-Revision-Date: 2019-04-07 00:15+0000\n" "Last-Translator: Marco Calcagni \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" "language/it/)\n" @@ -26,16 +26,18 @@ msgid "" "A Banking Mandate is a document signed by your customer that gives you the " "autorization to do one or several operations on his bank account." msgstr "" +"Un Mandato Bancario è un documento firmato dal cliente che autorizza a " +"eseguire una o più operazioni sul conto corrente." #. module: account_banking_mandate #: sql_constraint:account.banking.mandate:0 msgid "A Mandate with the same reference already exists for this company!" -msgstr "" +msgstr "Un Mandato con le stesse referenze esiste già per questa società!" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_banking_mandate msgid "A generic banking mandate" -msgstr "" +msgstr "Un Mandato bancario generico" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_needaction @@ -50,11 +52,13 @@ msgid "" "Activate this option if this payment method requires your customer to sign a " "direct debit mandate with your company." msgstr "" +"Attiva questa opzione se questo metodo di pagamento richiede la firma di un " +"mandato di addebito diretto (SDD)." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_attachment_count msgid "Attachment Count" -msgstr "" +msgstr "Conta degli allegati" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -74,7 +78,7 @@ msgstr "Conti Bancari" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_bank_payment_line msgid "Bank Payment Lines" -msgstr "" +msgstr "Righe di pagamento bancario" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -95,6 +99,8 @@ msgid "" "Banking mandates represent an authorization that the bank account owner " "gives to a company for a specific operation." msgstr "" +"Il mandato bancario rappresenta un autorizzazione che la banca concede alla " +"società per una specifica operazione." #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 @@ -120,12 +126,14 @@ msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " "account." msgstr "" +"non si può validare il mandato '%s' poichè non è collegato ad un conto " +"bancario." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." -msgstr "" +msgstr "Non si può validare il mandato '%s' senza una data di firma." #. module: account_banking_mandate #: model_terms:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -224,7 +232,7 @@ msgstr "Followers (Partners)" #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Format" -msgstr "" +msgstr "Formato" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 @@ -264,9 +272,8 @@ msgstr "Fattura" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_is_follower -#, fuzzy msgid "Is Follower" -msgstr "Is Follower" +msgstr "E' un Follower" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line @@ -316,19 +323,19 @@ msgstr "Mandato Richiesto" #: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 #, python-format msgid "Mandate should be in cancel state." -msgstr "" +msgstr "Il Mandato dovrebbe essere in stato Cancellato." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 #, python-format msgid "Mandate should be in draft or valid state." -msgstr "" +msgstr "Il Mandato dovrebbe essere in stato Bozza o Valido." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 #, python-format msgid "Mandate should be in draft state." -msgstr "" +msgstr "Il Mandato dovrebbe essere in stato Bozza." #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons @@ -342,8 +349,9 @@ msgstr "Mandati" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_has_error +#, fuzzy msgid "Message Delivery error" -msgstr "" +msgstr "Messaggio di errore della consegna" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_ids @@ -354,12 +362,12 @@ msgstr "Messaggi" #: code:addons/account_banking_mandate/models/account_payment_line.py:51 #, python-format msgid "Missing Mandate on payment line %s" -msgstr "" +msgstr "Manca il Mandato sulla riga del pagamento %s" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_needaction_counter msgid "Number of Actions" -msgstr "" +msgstr "Numero di Azioni" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner__mandate_count @@ -375,22 +383,23 @@ msgstr "Numero di Errori" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_needaction_counter msgid "Number of messages which requires an action" -msgstr "" +msgstr "Numero di messaggi che richiedono un azione" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_has_error_counter msgid "Number of messages with delivery error" -msgstr "" +msgstr "Numero di messaggi con errori di consegna" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_unread_counter msgid "Number of unread messages" -msgstr "" +msgstr "Numero di messaggi non letti" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 +#, fuzzy msgid "One-Off" -msgstr "" +msgstr "One-Off" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__state @@ -398,85 +407,89 @@ msgid "" "Only valid mandates can be used in a payment line. A cancelled mandate is a " "mandate that has been cancelled by the customer." msgstr "" +"Solo un valido mandato può essere usato in una riga di pagamento. Un mandato " +"annullato è un mandato che è stato annullato dal cliente." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__partner_id +#, fuzzy msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" -msgstr "" +msgstr "Righe di pagamento" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_method msgid "Payment Methods" -msgstr "" +msgstr "Metodi di pagamento" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" -msgstr "" +msgstr "Ricorrente" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Reference" -msgstr "" +msgstr "Riferimento" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Reference or Partner" -msgstr "" +msgstr "Riferimento o Partner" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" -msgstr "" +msgstr "Righe di pagamento collegate" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__scan msgid "Scan of the Mandate" -msgstr "" +msgstr "Scansione del mandato" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Search Banking Mandates" -msgstr "" +msgstr "Ricerca dei Mandati Bancari" #. module: account_banking_mandate #: selection:account.banking.mandate,format:0 msgid "Sepa Mandate" -msgstr "" +msgstr "Mandato Sepa" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Signature Date" -msgstr "" +msgstr "Data della firma" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "State" -msgstr "" +msgstr "Stato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__state msgid "Status" -msgstr "" +msgstr "Stato" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" +"La società del mandato %s è diversa rispetto alla società del partner %s." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 #, python-format msgid "The date of signature of mandate '%s' is in the future!" -msgstr "" +msgstr "La data di firma del mandato '%s' è nel futuro!" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_invoice.py:90 @@ -484,6 +497,8 @@ msgstr "" msgid "" "The invoice %s has a different company than that of the linked mandate %s)." msgstr "" +"La fattura %s ha una diversa società rispetto a quella collegata al mandato " +"%s)." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_move_line.py:46 From eea1d97d20d0bd56e77b4165e94ae01e036b2a78 Mon Sep 17 00:00:00 2001 From: Marco Calcagni Date: Sun, 14 Apr 2019 20:26:56 +0000 Subject: [PATCH 044/118] Translated using Weblate (Italian) Currently translated at 90.2% (92 of 102 strings) Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/it/ --- account_banking_mandate/i18n/it.po | 43 +++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 12 deletions(-) diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index 1fa4f8ea703..e6ef40e3793 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2019-04-07 00:15+0000\n" +"PO-Revision-Date: 2019-04-14 23:15+0000\n" "Last-Translator: Marco Calcagni \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" "language/it/)\n" @@ -277,9 +277,8 @@ msgstr "E' un Follower" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line -#, fuzzy msgid "Journal Item" -msgstr "Riga di Registro" +msgstr "Registrazione contabile" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate____last_update @@ -507,6 +506,8 @@ msgid "" "The item %s of journal %s has a different company than that of the linked " "mandate %s)." msgstr "" +"La riga %s del registro %s ha una company diversa da quella collegata al " +"mandato %s)." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 @@ -515,6 +516,8 @@ msgid "" "The mandate '%s' can't have a date of last debit before the date of " "signature." msgstr "" +"Il mandato '%s' non può avere una data del debito anteriore alla data della " +"firma." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:41 @@ -523,6 +526,7 @@ msgid "" "The payment line number %s a different company than that of the linked " "mandate %s)." msgstr "" +"La riga numero %s ha una company diversa da quella collegata al mandato %s)." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:26 @@ -531,53 +535,56 @@ msgid "" "The payment line number %s has the bank account '%s' which is not attached " "to the mandate '%s' (this mandate is attached to the bank account '%s')." msgstr "" +"La linea numero %s ha il conto bancario '%s' che non è collegato al mandato " +"'%s' (questo mandato è collegato al conto bancario '%s')." #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Type" -msgstr "" +msgstr "Tipo" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__type msgid "Type of Mandate" -msgstr "" +msgstr "Tipo di Mandato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__unique_mandate_reference msgid "Unique Mandate Reference" -msgstr "" +msgstr "Riferimento univoco del Mandato" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_unread msgid "Unread Messages" -msgstr "" +msgstr "Messaggi non letti" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_unread_counter msgid "Unread Messages Counter" -msgstr "" +msgstr "Numero messaggi non letti" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search msgid "Valid" -msgstr "" +msgstr "Valido" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree msgid "Validate" -msgstr "" +msgstr "Validare" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__website_message_ids msgid "Website Messages" -msgstr "" +msgstr "Messaggi Website" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__website_message_ids +#, fuzzy msgid "Website communication history" -msgstr "" +msgstr "Website communication history" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/res_partner_bank.py:25 @@ -586,6 +593,8 @@ msgid "" "You cannot change the company of Partner Bank %s, as there exists mandates " "referencing it that belong to another company." msgstr "" +"Non puoi cambiare la company della banca del partner %s, poiché ci sono " +"mandati collegati che appartengono ad un altra company." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 @@ -594,6 +603,8 @@ msgid "" "You cannot change the company of mandate %s, as there exists bank payment " "lines referencing it that belong to another company." msgstr "" +"Non puoi cambiare la company del mandato %s, poiché ci sono delle righe di " +"pagamento che appartengono ad un altra company." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 @@ -602,6 +613,8 @@ msgid "" "You cannot change the company of mandate %s, as there exists invoices " "referencing it that belong to another company." msgstr "" +"Non puoi cambiare la company del mandato %s, poiché ci sono delle fatture " +"collegate che appartengono ad un altra company." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 @@ -610,6 +623,8 @@ msgid "" "You cannot change the company of mandate %s, as there exists journal items " "referencing it that belong to another company." msgstr "" +"Non puoi cambiare la company del mandato %s, poiché ci sono delle righe " +"contabili collegate che appartengono ad un altra company." #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 @@ -618,6 +633,8 @@ msgid "" "You cannot change the company of mandate %s, as there exists payment lines " "referencing it that belong to another company." msgstr "" +"Non puoi cambiare la company del mandato %s, poiché ci sono delle righe di " +"pagamento che appartengono ad un altra company." #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -625,3 +642,5 @@ msgid "" "You should set a mandate back to draft only if you cancelled it by mistake. " "Do you want to continue?" msgstr "" +"Dovresti reimpostare un mandato a Bozza solo se lo hai cancellato per " +"errore. Vuoi continuare?" From 8d96f34a47954c93c58288f6449ef2f3b77cd10e Mon Sep 17 00:00:00 2001 From: Marco Calcagni Date: Mon, 29 Apr 2019 20:07:53 +0000 Subject: [PATCH 045/118] Translated using Weblate (Italian) Currently translated at 97.1% (99 of 102 strings) Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/it/ --- account_banking_mandate/i18n/it.po | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index e6ef40e3793..20f84854eef 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: bank-payment (10.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-21 10:17+0000\n" -"PO-Revision-Date: 2019-04-14 23:15+0000\n" +"PO-Revision-Date: 2019-04-29 23:02+0000\n" "Last-Translator: Marco Calcagni \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-payment-10-0/" "language/it/)\n" @@ -142,9 +142,8 @@ msgstr "Cliccare per creare un nuovo Mandato Bancario." #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__company_id -#, fuzzy msgid "Company" -msgstr "Company" +msgstr "Azienda" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_res_partner @@ -212,19 +211,16 @@ msgstr "Primo Mandato Valido" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_follower_ids -#, fuzzy msgid "Followers" msgstr "Followers" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_channel_ids -#, fuzzy msgid "Followers (Channels)" msgstr "Followers (Channels)" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_partner_ids -#, fuzzy msgid "Followers (Partners)" msgstr "Followers (Partners)" @@ -241,7 +237,6 @@ msgstr "Mandato Generico" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search -#, fuzzy msgid "Group By" msgstr "Group By" @@ -396,7 +391,6 @@ msgstr "Numero di messaggi non letti" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 -#, fuzzy msgid "One-Off" msgstr "One-Off" @@ -411,7 +405,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__partner_id -#, fuzzy msgid "Partner" msgstr "Partner" From 9dc90dc6dfc03c483e4274e08d0d1a3fe7fa4ce2 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Tue, 7 May 2019 09:10:44 +0200 Subject: [PATCH 046/118] [FIX] Banking Mandate: local variable referenced before assignment --- account_banking_mandate/models/account_move_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_banking_mandate/models/account_move_line.py b/account_banking_mandate/models/account_move_line.py index e5e385d4750..3df33cafe07 100644 --- a/account_banking_mandate/models/account_move_line.py +++ b/account_banking_mandate/models/account_move_line.py @@ -23,8 +23,8 @@ def _prepare_payment_line_vals(self, payment_order): mandate = self.mandate_id if not mandate and vals.get('mandate_id', False): mandate = mandate.browse(vals['mandate_id']) + partner_bank_id = vals.get('partner_bank_id', False) if not mandate: - partner_bank_id = vals.get('partner_bank_id', False) if partner_bank_id: domain = [('partner_bank_id', '=', partner_bank_id)] else: From 57c0aefef7396719049c210dba52edd2915e6150 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Wed, 8 May 2019 10:26:13 +0200 Subject: [PATCH 047/118] [IMP] Banking Mandate: deletion of bank accounts linked to mandates It should not be possible to delete a bank account linked to mandate(s). --- account_banking_mandate/models/account_banking_mandate.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 10cb4218556..5de711fb0a0 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -36,7 +36,9 @@ def _get_default_partner_bank_id_domain(self): partner_bank_id = fields.Many2one( comodel_name='res.partner.bank', string='Bank Account', track_visibility='onchange', - domain=lambda self: self._get_default_partner_bank_id_domain(),) + domain=lambda self: self._get_default_partner_bank_id_domain(), + ondelete='restrict', + ) partner_id = fields.Many2one( comodel_name='res.partner', related='partner_bank_id.partner_id', string='Partner', store=True) From d7222dc17ed632a9da179227f433666392718744 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Wed, 8 May 2019 10:26:48 +0200 Subject: [PATCH 048/118] [REF] Banking Mandate: indexes on bank account and partner --- account_banking_mandate/models/account_banking_mandate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 5de711fb0a0..18ec9532b63 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -38,10 +38,11 @@ def _get_default_partner_bank_id_domain(self): track_visibility='onchange', domain=lambda self: self._get_default_partner_bank_id_domain(), ondelete='restrict', + index=True, ) partner_id = fields.Many2one( comodel_name='res.partner', related='partner_bank_id.partner_id', - string='Partner', store=True) + string='Partner', store=True, index=True) company_id = fields.Many2one( comodel_name='res.company', string='Company', required=True, default=lambda self: self.env['res.company']._company_default_get( From 5da468327ce016d779af436a666ad0d8e153c250 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Wed, 8 May 2019 09:04:56 +0000 Subject: [PATCH 049/118] [UPD] Update account_banking_mandate.pot --- .../i18n/account_banking_mandate.pot | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot index 637521a6082..1acec5911da 100644 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -101,13 +101,13 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:176 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -290,19 +290,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:224 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:227 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:212 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:215 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:203 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:206 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,7 +395,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:98 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -453,13 +453,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:129 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:113 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -477,7 +477,7 @@ msgid "The item %s of journal %s has a different company than that of the linked msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "The mandate '%s' can't have a date of last debit before the date of signature." msgstr "" @@ -548,25 +548,25 @@ msgid "You cannot change the company of Partner Bank %s, as there exists mandate msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:164 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "You cannot change the company of mandate %s, as there exists bank payment lines referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:146 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "You cannot change the company of mandate %s, as there exists invoices referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:155 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "You cannot change the company of mandate %s, as there exists journal items referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:137 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "You cannot change the company of mandate %s, as there exists payment lines referencing it that belong to another company." msgstr "" From 3ef3c143cd54df3eed944338025b1a20bfb4e191 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Wed, 8 May 2019 09:48:31 +0200 Subject: [PATCH 050/118] [IMP] Banking Mandate: set reference at creation if falsy value in dict --- .../models/account_banking_mandate.py | 3 +- account_banking_mandate/tests/test_mandate.py | 71 +++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index 18ec9532b63..b8077b522b6 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -186,7 +186,8 @@ def _check_valid_state(self): @api.model def create(self, vals=None): - if vals.get('unique_mandate_reference', 'New') == 'New': + unique_mandate_reference = vals.get('unique_mandate_reference') + if not unique_mandate_reference or unique_mandate_reference == 'New': vals['unique_mandate_reference'] = \ self.env['ir.sequence'].next_by_code( 'account.banking.mandate') or 'New' diff --git a/account_banking_mandate/tests/test_mandate.py b/account_banking_mandate/tests/test_mandate.py index 767bc025b85..ccd2220c606 100644 --- a/account_banking_mandate/tests/test_mandate.py +++ b/account_banking_mandate/tests/test_mandate.py @@ -125,6 +125,77 @@ def test_constrains_04(self): with self.assertRaises(ValidationError): bank_account.mandate_ids += mandate + def test_mandate_reference_01(self): + """ + Test case: create a mandate with no reference + Expected result: the reference of the created mandate is not empty + """ + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + }) + self.assertTrue(mandate.unique_mandate_reference) + + def test_mandate_reference_02(self): + """ + Test case: create a mandate with "ref01" as reference + Expected result: the reference of the created mandate is "ref01" + """ + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + 'unique_mandate_reference': "ref01", + }) + self.assertEqual(mandate.unique_mandate_reference, "ref01") + + def test_mandate_reference_03(self): + """ + Test case: create a mandate with "New" as reference + Expected result: the reference of the created mandate is not empty and + is not "New" + """ + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + 'unique_mandate_reference': "New", + }) + self.assertTrue(mandate.unique_mandate_reference) + self.assertNotEqual(mandate.unique_mandate_reference, "New") + + def test_mandate_reference_05(self): + """ + Test case: create a mandate with False as reference + Expected result: the reference of the created mandate is not empty + """ + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + 'unique_mandate_reference': False, + }) + self.assertTrue(mandate.unique_mandate_reference) + + def test_mandate_reference_06(self): + """ + Test case: create a mandate with a empty string as reference + Expected result: the reference of the created mandate is not empty + """ + bank_account = self.env.ref('account_payment_mode.res_partner_12_iban') + mandate = self.env['account.banking.mandate'].create({ + 'partner_bank_id': bank_account.id, + 'signature_date': '2015-01-01', + 'company_id': self.company.id, + 'unique_mandate_reference': '', + }) + self.assertTrue(mandate.unique_mandate_reference) + def setUp(self): res = super(TestMandate, self).setUp() # Company From 75c8a6c40b7cc97ef726ab051274889127695dca Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 13 May 2019 10:46:38 +0000 Subject: [PATCH 051/118] [UPD] Update account_banking_mandate.pot --- account_banking_mandate/i18n/account_banking_mandate.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot index 1acec5911da..cf0224c3c3d 100644 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -290,19 +290,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:227 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:215 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:206 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" From f537611e51c03e3b49afa3242ea49bcb68a30b62 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 20 May 2019 20:31:33 +0000 Subject: [PATCH 052/118] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/ --- account_banking_mandate/i18n/am.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/ar.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/ca.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/cs.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/da_DK.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/de.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/el_GR.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/es.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/es_CR.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/es_EC.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/es_ES.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/es_MX.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/es_VE.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/et.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/fi.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/fr.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/gl.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/hr.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/it.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/lt.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/nb_NO.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/nl.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/nl_BE.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/pl.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/pt.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/pt_BR.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/pt_PT.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/ro.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/ru.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/sl.po | 40 ++++++++++++++++++--------- account_banking_mandate/i18n/th.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/tr.po | 37 ++++++++++++++++--------- account_banking_mandate/i18n/vi.po | 37 ++++++++++++++++--------- 33 files changed, 819 insertions(+), 429 deletions(-) diff --git a/account_banking_mandate/i18n/am.po b/account_banking_mandate/i18n/am.po index 3af02c71644..d65f2ab2409 100644 --- a/account_banking_mandate/i18n/am.po +++ b/account_banking_mandate/i18n/am.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ar.po b/account_banking_mandate/i18n/ar.po index 6a3aba04290..4c0462574b7 100644 --- a/account_banking_mandate/i18n/ar.po +++ b/account_banking_mandate/i18n/ar.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ca.po b/account_banking_mandate/i18n/ca.po index a38004c6ee2..4040d9122fa 100644 --- a/account_banking_mandate/i18n/ca.po +++ b/account_banking_mandate/i18n/ca.po @@ -120,7 +120,7 @@ msgid "Cancelled" msgstr "Cancel·lat" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "No es pot validar el mandat '%s' perquè no té cap compte bancari associat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No es pot validar el mandat '%s' sense una data de signatura." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Mandat requerit" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "El mandat hauria d'estar en estat cancel·lat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "El mandat hauria de ser en estat esborrany o validat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "El mandat hauria de ser en estat esborrany." @@ -408,6 +408,13 @@ msgstr "" msgid "Partner" msgstr "Empresa" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Línies de pagament" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -418,6 +425,14 @@ msgstr "Línies de pagament" msgid "Payment Methods" msgstr "Mètodes de pagament" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Línies de pagament" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -435,7 +450,6 @@ msgstr "Referència o client" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Línies de pagament relacionades" @@ -471,14 +485,14 @@ msgid "Status" msgstr "Estat" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" "La companyia del mandat %s és diferent de la companyia de l'empresa %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La data de la signatura del mandat %s no pot ser posterior a avui!" @@ -501,7 +515,7 @@ msgstr "" "(%s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -588,7 +602,7 @@ msgstr "" "mandats associats que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -598,7 +612,7 @@ msgstr "" "pagament bancari associades que pertanyen a altres companyies." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -608,7 +622,7 @@ msgstr "" "associades que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -618,7 +632,7 @@ msgstr "" "diari associats que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/cs.po b/account_banking_mandate/i18n/cs.po index 461f0523fec..2a1026a1091 100644 --- a/account_banking_mandate/i18n/cs.po +++ b/account_banking_mandate/i18n/cs.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/da_DK.po b/account_banking_mandate/i18n/da_DK.po index 53db70c4d56..20dcd67f95f 100644 --- a/account_banking_mandate/i18n/da_DK.po +++ b/account_banking_mandate/i18n/da_DK.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/de.po b/account_banking_mandate/i18n/de.po index c890b3fcf5b..46ef65d0543 100644 --- a/account_banking_mandate/i18n/de.po +++ b/account_banking_mandate/i18n/de.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "Abgebrochen" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "Mandat erforderlich" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandate sollte im Abburchzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandat sollte im Entwurfs- oder Gültigzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "Mandate sollte im Entwurfszustand sein." @@ -397,6 +397,13 @@ msgstr "" msgid "Partner" msgstr "Partner" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Zahlungszeilen" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -407,6 +414,14 @@ msgstr "Zahlungszeilen" msgid "Payment Methods" msgstr "Zahlungsmethoden" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Zahlungszeilen" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -424,7 +439,6 @@ msgstr "Referenz oder Partner" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Zugehörige Zahlungszeilen" @@ -460,13 +474,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -487,7 +501,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -566,7 +580,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -574,7 +588,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -582,7 +596,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -590,7 +604,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/el_GR.po b/account_banking_mandate/i18n/el_GR.po index 19bc4ac70b7..60a80b686d1 100644 --- a/account_banking_mandate/i18n/el_GR.po +++ b/account_banking_mandate/i18n/el_GR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index 4cf79758706..ff16a9cd7fc 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -119,7 +119,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Mandato requerido" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "El mandato debe estar en estado cancelado." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "El mandato debe estar en estado borrador o válido." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "El mandato debe estar en estado borrador." @@ -408,6 +408,13 @@ msgstr "" msgid "Partner" msgstr "Empresa" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Líneas de pago" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -418,6 +425,14 @@ msgstr "Líneas de pago" msgid "Payment Methods" msgstr "Métodos de pago" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Líneas de pago" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -435,7 +450,6 @@ msgstr "Referencia o cliente" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Líneas de pago relacionadas" @@ -471,13 +485,13 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "La compañía del mandato %s difiere de la compañia de la empresa %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La fecha de la firma del mandato '%s' no puede ser posterior a hoy!" @@ -501,7 +515,7 @@ msgstr "" "asociado (%s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -589,7 +603,7 @@ msgstr "" "mandatos asociados que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -599,7 +613,7 @@ msgstr "" "bancario asociados que pertenecen a otras compañías." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -609,7 +623,7 @@ msgstr "" "asociadas que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -619,7 +633,7 @@ msgstr "" "diario asociados que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_CR.po b/account_banking_mandate/i18n/es_CR.po index 7c396bda2f1..dcfda076792 100644 --- a/account_banking_mandate/i18n/es_CR.po +++ b/account_banking_mandate/i18n/es_CR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_EC.po b/account_banking_mandate/i18n/es_EC.po index 7f350511107..c0e0896ed82 100644 --- a/account_banking_mandate/i18n/es_EC.po +++ b/account_banking_mandate/i18n/es_EC.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_ES.po b/account_banking_mandate/i18n/es_ES.po index 821bd4d901c..7ba22abfb49 100644 --- a/account_banking_mandate/i18n/es_ES.po +++ b/account_banking_mandate/i18n/es_ES.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_MX.po b/account_banking_mandate/i18n/es_MX.po index fdb71b6032c..f5496fe8dfd 100644 --- a/account_banking_mandate/i18n/es_MX.po +++ b/account_banking_mandate/i18n/es_MX.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_VE.po b/account_banking_mandate/i18n/es_VE.po index 7c51a5911d3..20297a97c1c 100644 --- a/account_banking_mandate/i18n/es_VE.po +++ b/account_banking_mandate/i18n/es_VE.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/et.po b/account_banking_mandate/i18n/et.po index 586b4c1dda8..1f919c549c1 100644 --- a/account_banking_mandate/i18n/et.po +++ b/account_banking_mandate/i18n/et.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/fi.po b/account_banking_mandate/i18n/fi.po index c6f4b72faf3..c42b78ee2dc 100644 --- a/account_banking_mandate/i18n/fi.po +++ b/account_banking_mandate/i18n/fi.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "Peruutettu" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -396,6 +396,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -406,6 +411,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -423,7 +435,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -459,13 +470,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -486,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -565,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -573,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -581,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -589,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/fr.po b/account_banking_mandate/i18n/fr.po index 46cdb9dcb34..9d642caae3e 100644 --- a/account_banking_mandate/i18n/fr.po +++ b/account_banking_mandate/i18n/fr.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,13 @@ msgstr "" msgid "Partner" msgstr "Partenaire" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Lignes de règlement" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +412,14 @@ msgstr "Lignes de règlement" msgid "Payment Methods" msgstr "Methodes de règlement" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Lignes de règlement" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +437,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +472,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +499,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +578,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +586,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +594,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +602,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/gl.po b/account_banking_mandate/i18n/gl.po index becd3b4279b..ec7b7c7502d 100644 --- a/account_banking_mandate/i18n/gl.po +++ b/account_banking_mandate/i18n/gl.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/hr.po b/account_banking_mandate/i18n/hr.po index 174d9795486..3a17dee2a51 100644 --- a/account_banking_mandate/i18n/hr.po +++ b/account_banking_mandate/i18n/hr.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,13 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Stavke plaćanja" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +412,14 @@ msgstr "Stavke plaćanja" msgid "Payment Methods" msgstr "Metode plaćanja" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Stavke plaćanja" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +437,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +472,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +499,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +578,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +586,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +594,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +602,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index 20f84854eef..c2bdeae82b1 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -120,7 +120,7 @@ msgid "Cancelled" msgstr "Annullato" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -130,7 +130,7 @@ msgstr "" "bancario." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Non si può validare il mandato '%s' senza una data di firma." @@ -314,19 +314,19 @@ msgid "Mandate Required" msgstr "Mandato Richiesto" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "Il Mandato dovrebbe essere in stato Cancellato." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Il Mandato dovrebbe essere in stato Bozza o Valido." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "Il Mandato dovrebbe essere in stato Bozza." @@ -408,6 +408,13 @@ msgstr "" msgid "Partner" msgstr "Partner" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Righe di pagamento" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -418,6 +425,14 @@ msgstr "Righe di pagamento" msgid "Payment Methods" msgstr "Metodi di pagamento" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Righe di pagamento" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -435,7 +450,6 @@ msgstr "Riferimento o Partner" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Righe di pagamento collegate" @@ -471,14 +485,14 @@ msgid "Status" msgstr "Stato" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" "La società del mandato %s è diversa rispetto alla società del partner %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La data di firma del mandato '%s' è nel futuro!" @@ -503,7 +517,7 @@ msgstr "" "mandato %s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -590,7 +604,7 @@ msgstr "" "mandati collegati che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -600,7 +614,7 @@ msgstr "" "pagamento che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -610,7 +624,7 @@ msgstr "" "collegate che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -620,7 +634,7 @@ msgstr "" "contabili collegate che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/lt.po b/account_banking_mandate/i18n/lt.po index 5196daa4327..3d4bf7370f4 100644 --- a/account_banking_mandate/i18n/lt.po +++ b/account_banking_mandate/i18n/lt.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nb_NO.po b/account_banking_mandate/i18n/nb_NO.po index 3ced3d2e2bb..0205e427eb1 100644 --- a/account_banking_mandate/i18n/nb_NO.po +++ b/account_banking_mandate/i18n/nb_NO.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nl.po b/account_banking_mandate/i18n/nl.po index 06ac3b81e6d..331911be653 100644 --- a/account_banking_mandate/i18n/nl.po +++ b/account_banking_mandate/i18n/nl.po @@ -119,7 +119,7 @@ msgid "Cancelled" msgstr "Geannuleerd" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "gekoppeld is. " #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Kan mandaat '%s' niet goedkeuren zonder een datum of handtekening." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Bankrekening verplicht" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandaat moet in de 'annulleer' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandaat moet in de 'geldig' of 'concept' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "Mandaat moet in de 'concept' status zijn." @@ -408,6 +408,13 @@ msgstr "" msgid "Partner" msgstr "Relatie" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Betaalregels" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -418,6 +425,14 @@ msgstr "Betaalregels" msgid "Payment Methods" msgstr "Betaalwijzes" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Betaalregels" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -435,7 +450,6 @@ msgstr "Referentie of relatie" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Gekoppelde betaalregels" @@ -471,13 +485,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "De datum van de handtekening van mandaat '%s' is in de toekomts!" @@ -498,7 +512,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -581,7 +595,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -589,7 +603,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -597,7 +611,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -605,7 +619,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nl_BE.po b/account_banking_mandate/i18n/nl_BE.po index c62a1e5b0e9..1c180342b1c 100644 --- a/account_banking_mandate/i18n/nl_BE.po +++ b/account_banking_mandate/i18n/nl_BE.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pl.po b/account_banking_mandate/i18n/pl.po index 661cc98d609..3406466f6ae 100644 --- a/account_banking_mandate/i18n/pl.po +++ b/account_banking_mandate/i18n/pl.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt.po b/account_banking_mandate/i18n/pt.po index 649e85c6056..8128eee170c 100644 --- a/account_banking_mandate/i18n/pt.po +++ b/account_banking_mandate/i18n/pt.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt_BR.po b/account_banking_mandate/i18n/pt_BR.po index 9707445fdf4..a0dc3cfe853 100644 --- a/account_banking_mandate/i18n/pt_BR.po +++ b/account_banking_mandate/i18n/pt_BR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgstr "" "Não pode validar a ordem '%s' porque não está anexada a conta bancária." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Não pode validar a ordem '%s' sem uma data de assinatura." @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -396,6 +396,13 @@ msgstr "" msgid "Partner" msgstr "Parceiro" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Linhas do pagamento" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -406,6 +413,14 @@ msgstr "Linhas do pagamento" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Linhas do pagamento" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -423,7 +438,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Linhas relacionadas do pagamento" @@ -459,13 +473,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -486,7 +500,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -565,7 +579,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -573,7 +587,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -581,7 +595,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -589,7 +603,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt_PT.po b/account_banking_mandate/i18n/pt_PT.po index cae1bfc2ee1..8a7943c8884 100644 --- a/account_banking_mandate/i18n/pt_PT.po +++ b/account_banking_mandate/i18n/pt_PT.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -396,6 +396,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -406,6 +411,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -423,7 +435,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -459,13 +470,13 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -486,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -565,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -573,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -581,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -589,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ro.po b/account_banking_mandate/i18n/ro.po index 83083836e51..9a3361faa05 100644 --- a/account_banking_mandate/i18n/ro.po +++ b/account_banking_mandate/i18n/ro.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,6 +395,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -405,6 +410,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -422,7 +434,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -458,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -485,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -564,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -572,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -580,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -588,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ru.po b/account_banking_mandate/i18n/ru.po index ce4644a1f65..30498c44f8d 100644 --- a/account_banking_mandate/i18n/ru.po +++ b/account_banking_mandate/i18n/ru.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -396,6 +396,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -406,6 +411,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -423,7 +435,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -459,13 +470,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -486,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -565,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -573,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -581,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -589,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/sl.po b/account_banking_mandate/i18n/sl.po index 9efd92ad29b..86baf8ab68f 100644 --- a/account_banking_mandate/i18n/sl.po +++ b/account_banking_mandate/i18n/sl.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "Preklicano" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "Mandata '%s' ni mogoče overiti, ker ni pripet bančnemu računu." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Mandata '%s' ni mogoče overiti brez datuma podpisa." @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -397,6 +397,13 @@ msgstr "" msgid "Partner" msgstr "Partner" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +#, fuzzy +#| msgid "Payment Lines" +msgid "Payment Line Ids Count" +msgstr "Plačilne postavke" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -407,6 +414,14 @@ msgstr "Plačilne postavke" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, fuzzy, python-format +#| msgid "Payment Lines" +msgid "Payment lines" +msgstr "Plačilne postavke" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -424,7 +439,6 @@ msgstr "Sklic ali partner" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "Povezane plačilne postavke" @@ -460,13 +474,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -487,7 +501,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -567,7 +581,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -575,7 +589,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -583,7 +597,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -591,7 +605,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/th.po b/account_banking_mandate/i18n/th.po index ad06798df55..abd887d2a88 100644 --- a/account_banking_mandate/i18n/th.po +++ b/account_banking_mandate/i18n/th.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/tr.po b/account_banking_mandate/i18n/tr.po index 85f73704648..36809529163 100644 --- a/account_banking_mandate/i18n/tr.po +++ b/account_banking_mandate/i18n/tr.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/vi.po b/account_banking_mandate/i18n/vi.po index e2b9fbc54d6..5881cb7aa05 100644 --- a/account_banking_mandate/i18n/vi.po +++ b/account_banking_mandate/i18n/vi.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:148 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:144 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:192 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:180 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:171 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -394,6 +394,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: account_banking_mandate +#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids_count +msgid "Payment Line Ids Count" +msgstr "" + #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_payment_line msgid "Payment Lines" @@ -404,6 +409,13 @@ msgstr "" msgid "Payment Methods" msgstr "" +#. module: account_banking_mandate +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons +#, python-format +msgid "Payment lines" +msgstr "" + #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 msgid "Recurrent" @@ -421,7 +433,6 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__payment_line_ids -#: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form msgid "Related Payment Lines" msgstr "" @@ -457,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:97 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:81 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -484,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:87 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -563,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -571,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:114 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -579,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:123 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -587,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:105 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " From e67fb1fa2a3a2dba24959bc24711905472215e11 Mon Sep 17 00:00:00 2001 From: Jaume Planas Date: Mon, 27 May 2019 10:53:52 +0000 Subject: [PATCH 053/118] Translated using Weblate (Catalan) Currently translated at 100.0% (102 of 102 strings) Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/ca/ --- account_banking_mandate/i18n/ca.po | 51 ++++++++++++++---------------- 1 file changed, 24 insertions(+), 27 deletions(-) diff --git a/account_banking_mandate/i18n/ca.po b/account_banking_mandate/i18n/ca.po index 4040d9122fa..69eba48efb7 100644 --- a/account_banking_mandate/i18n/ca.po +++ b/account_banking_mandate/i18n/ca.po @@ -9,15 +9,15 @@ 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: 2018-09-26 17:04+0000\n" -"Last-Translator: Harald Panten \n" +"PO-Revision-Date: 2019-05-27 13:19+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.1.1\n" +"X-Generator: Weblate 3.6.1\n" #. module: account_banking_mandate #: model_terms:ir.actions.act_window,help:account_banking_mandate.mandate_action @@ -42,7 +42,7 @@ msgstr "Un mandat bancari genèric" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_needaction msgid "Action Needed" -msgstr "" +msgstr "És necessària una acció" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_invoice__mandate_required @@ -58,7 +58,7 @@ msgstr "" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_attachment_count msgid "Attachment Count" -msgstr "" +msgstr "Número d'adjunts" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -211,17 +211,17 @@ msgstr "Primer mandat vàlid" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_follower_ids msgid "Followers" -msgstr "" +msgstr "Seguidors" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_channel_ids msgid "Followers (Channels)" -msgstr "" +msgstr "Seguidors (canals)" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_partner_ids msgid "Followers (Partners)" -msgstr "" +msgstr "Seguidors (empreses)" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form @@ -247,17 +247,17 @@ msgstr "ID" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_unread msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si es marca els missatges nous requeriran la vostra atenció." #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_needaction msgid "If checked, new messages require your attention." -msgstr "" +msgstr "Si es marca els missatges nous requeriran la vostra atenció." #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_has_error msgid "If checked, some messages have a delivery error." -msgstr "" +msgstr "Si es marca, alguns missatges tenen un error de lliurament." #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_invoice @@ -267,7 +267,7 @@ msgstr "Factura" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_is_follower msgid "Is Follower" -msgstr "" +msgstr "És seguidor" #. module: account_banking_mandate #: model:ir.model,name:account_banking_mandate.model_account_move_line @@ -292,7 +292,7 @@ msgstr "Darrera actualització el" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_main_attachment_id msgid "Main Attachment" -msgstr "" +msgstr "Adjunt principal" #. module: account_banking_mandate #: model_terms:ir.ui.view,arch_db:account_banking_mandate.bank_payment_line_tree @@ -342,12 +342,12 @@ msgstr "Mandats" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_has_error msgid "Message Delivery error" -msgstr "" +msgstr "Error de lliurament de missatge" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_ids msgid "Messages" -msgstr "" +msgstr "Missatges" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/account_payment_line.py:51 @@ -357,9 +357,8 @@ msgstr "Falta el mandat a la línia de pagament %s" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_needaction_counter -#, fuzzy msgid "Number of Actions" -msgstr "Número de mandats" +msgstr "Número d'accions" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_res_partner__mandate_count @@ -369,25 +368,23 @@ msgstr "Número de mandats" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_has_error_counter -#, fuzzy msgid "Number of error" -msgstr "Número de mandats" +msgstr "Número d'error" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_needaction_counter msgid "Number of messages which requires an action" -msgstr "" +msgstr "Número de missatges que requereixen una acció" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_has_error_counter msgid "Number of messages with delivery error" -msgstr "" +msgstr "Número de missatges amb error de lliurament" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__message_unread_counter -#, fuzzy msgid "Number of unread messages" -msgstr "Número de mandats" +msgstr "Número de missatges no llegits" #. module: account_banking_mandate #: selection:account.banking.mandate,type:0 @@ -562,12 +559,12 @@ msgstr "Referència única del mandat" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_unread msgid "Unread Messages" -msgstr "" +msgstr "Missatges no llegits" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__message_unread_counter msgid "Unread Messages Counter" -msgstr "" +msgstr "Total de missatges no llegits" #. module: account_banking_mandate #: selection:account.banking.mandate,state:0 @@ -584,12 +581,12 @@ msgstr "Validar" #. module: account_banking_mandate #: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate__website_message_ids msgid "Website Messages" -msgstr "" +msgstr "Missatges del lloc Web" #. module: account_banking_mandate #: model:ir.model.fields,help:account_banking_mandate.field_account_banking_mandate__website_message_ids msgid "Website communication history" -msgstr "" +msgstr "Historial de comunicacions del lloc Web" #. module: account_banking_mandate #: code:addons/account_banking_mandate/models/res_partner_bank.py:25 From 0fb99d2b2677ae667c7a8930bcab0e6b44fb1452 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sun, 12 May 2019 22:08:35 +0200 Subject: [PATCH 054/118] [IMP] account_banking_mandate: Put binary field as attachment For not wasting space in DB. Migration scripts included (requires openupgradelib). --- account_banking_mandate/__manifest__.py | 2 +- .../migrations/12.0.2.0.0/post-migration.py | 15 +++++++++++++++ .../migrations/12.0.2.0.0/pre-migration.py | 17 +++++++++++++++++ .../models/account_banking_mandate.py | 5 ++++- 4 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 account_banking_mandate/migrations/12.0.2.0.0/post-migration.py create mode 100644 account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 64dd48db169..c38f7a1ce8c 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '12.0.1.0.0', + 'version': '12.0.2.0.0', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py new file mode 100644 index 00000000000..224858e87d4 --- /dev/null +++ b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Tecnativa - Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from openupgradelib import openupgrade +from openupgradelib import openupgrade_90 + + +@openupgrade.migrate(use_env=True) +def migrate(env, version): + column = openupgrade.get_legacy_name('scan') + if openupgrade.column_exists(env.cr, 'account_banking_mandate', column): + openupgrade_90.convert_binary_field_to_attachment( + env, {'account.banking.mandate': [('scan', None)]}, + ) diff --git a/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py new file mode 100644 index 00000000000..930e315f8d8 --- /dev/null +++ b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openupgradelib import openupgrade + +column_renames = { + 'account_banking_mandate': [ + ('scan', None), + ], +} + + +@openupgrade.migrate() +def migrate(cr, version): + if openupgrade.column_exists(cr, 'account_banking_mandate', 'scan'): + openupgrade.rename_columns(cr, column_renames) diff --git a/account_banking_mandate/models/account_banking_mandate.py b/account_banking_mandate/models/account_banking_mandate.py index b8077b522b6..bb87f7fcbaf 100644 --- a/account_banking_mandate/models/account_banking_mandate.py +++ b/account_banking_mandate/models/account_banking_mandate.py @@ -53,7 +53,10 @@ def _get_default_partner_bank_id_domain(self): ) signature_date = fields.Date(string='Date of Signature of the Mandate', track_visibility='onchange') - scan = fields.Binary(string='Scan of the Mandate') + scan = fields.Binary( + string='Scan of the Mandate', + attachment=True, + ) last_debit_date = fields.Date(string='Date of the Last Debit', readonly=True) state = fields.Selection([ From 32619c3ce3789954e9ec72edb9ddabc806aaf213 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 16 Jun 2019 01:07:54 +0000 Subject: [PATCH 055/118] [UPD] Update account_banking_mandate.pot --- .../i18n/account_banking_mandate.pot | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/account_banking_mandate/i18n/account_banking_mandate.pot b/account_banking_mandate/i18n/account_banking_mandate.pot index cf0224c3c3d..fb673abb33e 100644 --- a/account_banking_mandate/i18n/account_banking_mandate.pot +++ b/account_banking_mandate/i18n/account_banking_mandate.pot @@ -101,13 +101,13 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "Cannot validate the mandate '%s' because it is not attached to a bank account." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -290,19 +290,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -395,7 +395,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -453,13 +453,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -477,7 +477,7 @@ msgid "The item %s of journal %s has a different company than that of the linked msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "The mandate '%s' can't have a date of last debit before the date of signature." msgstr "" @@ -548,25 +548,25 @@ msgid "You cannot change the company of Partner Bank %s, as there exists mandate msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "You cannot change the company of mandate %s, as there exists bank payment lines referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "You cannot change the company of mandate %s, as there exists invoices referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "You cannot change the company of mandate %s, as there exists journal items referencing it that belong to another company." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "You cannot change the company of mandate %s, as there exists payment lines referencing it that belong to another company." msgstr "" From 9f1d988513756da99a4901638cff5f74687c20b9 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 16 Jun 2019 10:58:55 +0000 Subject: [PATCH 056/118] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: bank-payment-12.0/bank-payment-12.0-account_banking_mandate Translate-URL: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate/ --- account_banking_mandate/i18n/am.po | 26 +++++++++++++------------- account_banking_mandate/i18n/ar.po | 26 +++++++++++++------------- account_banking_mandate/i18n/ca.po | 26 +++++++++++++------------- account_banking_mandate/i18n/cs.po | 26 +++++++++++++------------- account_banking_mandate/i18n/da_DK.po | 26 +++++++++++++------------- account_banking_mandate/i18n/de.po | 26 +++++++++++++------------- account_banking_mandate/i18n/el_GR.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es_CR.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es_EC.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es_ES.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es_MX.po | 26 +++++++++++++------------- account_banking_mandate/i18n/es_VE.po | 26 +++++++++++++------------- account_banking_mandate/i18n/et.po | 26 +++++++++++++------------- account_banking_mandate/i18n/fi.po | 26 +++++++++++++------------- account_banking_mandate/i18n/fr.po | 26 +++++++++++++------------- account_banking_mandate/i18n/gl.po | 26 +++++++++++++------------- account_banking_mandate/i18n/hr.po | 26 +++++++++++++------------- account_banking_mandate/i18n/it.po | 26 +++++++++++++------------- account_banking_mandate/i18n/lt.po | 26 +++++++++++++------------- account_banking_mandate/i18n/nb_NO.po | 26 +++++++++++++------------- account_banking_mandate/i18n/nl.po | 26 +++++++++++++------------- account_banking_mandate/i18n/nl_BE.po | 26 +++++++++++++------------- account_banking_mandate/i18n/pl.po | 26 +++++++++++++------------- account_banking_mandate/i18n/pt.po | 26 +++++++++++++------------- account_banking_mandate/i18n/pt_BR.po | 26 +++++++++++++------------- account_banking_mandate/i18n/pt_PT.po | 26 +++++++++++++------------- account_banking_mandate/i18n/ro.po | 26 +++++++++++++------------- account_banking_mandate/i18n/ru.po | 26 +++++++++++++------------- account_banking_mandate/i18n/sl.po | 26 +++++++++++++------------- account_banking_mandate/i18n/th.po | 26 +++++++++++++------------- account_banking_mandate/i18n/tr.po | 26 +++++++++++++------------- account_banking_mandate/i18n/vi.po | 26 +++++++++++++------------- 33 files changed, 429 insertions(+), 429 deletions(-) diff --git a/account_banking_mandate/i18n/am.po b/account_banking_mandate/i18n/am.po index d65f2ab2409..08e789ba870 100644 --- a/account_banking_mandate/i18n/am.po +++ b/account_banking_mandate/i18n/am.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ar.po b/account_banking_mandate/i18n/ar.po index 4c0462574b7..13b2afaff93 100644 --- a/account_banking_mandate/i18n/ar.po +++ b/account_banking_mandate/i18n/ar.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ca.po b/account_banking_mandate/i18n/ca.po index 69eba48efb7..869308c3519 100644 --- a/account_banking_mandate/i18n/ca.po +++ b/account_banking_mandate/i18n/ca.po @@ -120,7 +120,7 @@ msgid "Cancelled" msgstr "Cancel·lat" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "No es pot validar el mandat '%s' perquè no té cap compte bancari associat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No es pot validar el mandat '%s' sense una data de signatura." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Mandat requerit" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "El mandat hauria d'estar en estat cancel·lat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "El mandat hauria de ser en estat esborrany o validat." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "El mandat hauria de ser en estat esborrany." @@ -423,7 +423,7 @@ msgid "Payment Methods" msgstr "Mètodes de pagament" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -482,14 +482,14 @@ msgid "Status" msgstr "Estat" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" "La companyia del mandat %s és diferent de la companyia de l'empresa %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La data de la signatura del mandat %s no pot ser posterior a avui!" @@ -512,7 +512,7 @@ msgstr "" "(%s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -599,7 +599,7 @@ msgstr "" "mandats associats que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -609,7 +609,7 @@ msgstr "" "pagament bancari associades que pertanyen a altres companyies." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -619,7 +619,7 @@ msgstr "" "associades que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -629,7 +629,7 @@ msgstr "" "diari associats que pertanyen a una altra companyia." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/cs.po b/account_banking_mandate/i18n/cs.po index 2a1026a1091..483ce358320 100644 --- a/account_banking_mandate/i18n/cs.po +++ b/account_banking_mandate/i18n/cs.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/da_DK.po b/account_banking_mandate/i18n/da_DK.po index 20dcd67f95f..e05c69b51e3 100644 --- a/account_banking_mandate/i18n/da_DK.po +++ b/account_banking_mandate/i18n/da_DK.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/de.po b/account_banking_mandate/i18n/de.po index 46ef65d0543..9979ec0b896 100644 --- a/account_banking_mandate/i18n/de.po +++ b/account_banking_mandate/i18n/de.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "Abgebrochen" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "Mandat erforderlich" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandate sollte im Abburchzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandat sollte im Entwurfs- oder Gültigzustand sein." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "Mandate sollte im Entwurfszustand sein." @@ -415,7 +415,7 @@ msgid "Payment Methods" msgstr "Zahlungsmethoden" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -474,13 +474,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -501,7 +501,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -580,7 +580,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -588,7 +588,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -596,7 +596,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -604,7 +604,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/el_GR.po b/account_banking_mandate/i18n/el_GR.po index 60a80b686d1..715d7e3d5b0 100644 --- a/account_banking_mandate/i18n/el_GR.po +++ b/account_banking_mandate/i18n/el_GR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es.po b/account_banking_mandate/i18n/es.po index ff16a9cd7fc..7526e675ba0 100644 --- a/account_banking_mandate/i18n/es.po +++ b/account_banking_mandate/i18n/es.po @@ -119,7 +119,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "asociada." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "No se puede validar el mandato '%s' sin una fecha de firma." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Mandato requerido" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "El mandato debe estar en estado cancelado." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "El mandato debe estar en estado borrador o válido." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "El mandato debe estar en estado borrador." @@ -426,7 +426,7 @@ msgid "Payment Methods" msgstr "Métodos de pago" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -485,13 +485,13 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "La compañía del mandato %s difiere de la compañia de la empresa %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La fecha de la firma del mandato '%s' no puede ser posterior a hoy!" @@ -515,7 +515,7 @@ msgstr "" "asociado (%s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -603,7 +603,7 @@ msgstr "" "mandatos asociados que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -613,7 +613,7 @@ msgstr "" "bancario asociados que pertenecen a otras compañías." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -623,7 +623,7 @@ msgstr "" "asociadas que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -633,7 +633,7 @@ msgstr "" "diario asociados que pertenecen a otra compañía." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_CR.po b/account_banking_mandate/i18n/es_CR.po index dcfda076792..43245dd5bef 100644 --- a/account_banking_mandate/i18n/es_CR.po +++ b/account_banking_mandate/i18n/es_CR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_EC.po b/account_banking_mandate/i18n/es_EC.po index c0e0896ed82..34f35bbb083 100644 --- a/account_banking_mandate/i18n/es_EC.po +++ b/account_banking_mandate/i18n/es_EC.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_ES.po b/account_banking_mandate/i18n/es_ES.po index 7ba22abfb49..a30b942b603 100644 --- a/account_banking_mandate/i18n/es_ES.po +++ b/account_banking_mandate/i18n/es_ES.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_MX.po b/account_banking_mandate/i18n/es_MX.po index f5496fe8dfd..351e944044f 100644 --- a/account_banking_mandate/i18n/es_MX.po +++ b/account_banking_mandate/i18n/es_MX.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/es_VE.po b/account_banking_mandate/i18n/es_VE.po index 20297a97c1c..ff65eea6213 100644 --- a/account_banking_mandate/i18n/es_VE.po +++ b/account_banking_mandate/i18n/es_VE.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/et.po b/account_banking_mandate/i18n/et.po index 1f919c549c1..597a1049aef 100644 --- a/account_banking_mandate/i18n/et.po +++ b/account_banking_mandate/i18n/et.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/fi.po b/account_banking_mandate/i18n/fi.po index c42b78ee2dc..6f898ac32fb 100644 --- a/account_banking_mandate/i18n/fi.po +++ b/account_banking_mandate/i18n/fi.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "Peruutettu" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -412,7 +412,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -470,13 +470,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -497,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -576,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -584,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -592,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -600,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/fr.po b/account_banking_mandate/i18n/fr.po index 9d642caae3e..91a9b6a6e76 100644 --- a/account_banking_mandate/i18n/fr.po +++ b/account_banking_mandate/i18n/fr.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -413,7 +413,7 @@ msgid "Payment Methods" msgstr "Methodes de règlement" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -472,13 +472,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -499,7 +499,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -578,7 +578,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -586,7 +586,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -594,7 +594,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -602,7 +602,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/gl.po b/account_banking_mandate/i18n/gl.po index ec7b7c7502d..76f8aed0e73 100644 --- a/account_banking_mandate/i18n/gl.po +++ b/account_banking_mandate/i18n/gl.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/hr.po b/account_banking_mandate/i18n/hr.po index 3a17dee2a51..5dda53e844a 100644 --- a/account_banking_mandate/i18n/hr.po +++ b/account_banking_mandate/i18n/hr.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -413,7 +413,7 @@ msgid "Payment Methods" msgstr "Metode plaćanja" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -472,13 +472,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -499,7 +499,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -578,7 +578,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -586,7 +586,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -594,7 +594,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -602,7 +602,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/it.po b/account_banking_mandate/i18n/it.po index c2bdeae82b1..a82cb32b2da 100644 --- a/account_banking_mandate/i18n/it.po +++ b/account_banking_mandate/i18n/it.po @@ -120,7 +120,7 @@ msgid "Cancelled" msgstr "Annullato" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -130,7 +130,7 @@ msgstr "" "bancario." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Non si può validare il mandato '%s' senza una data di firma." @@ -314,19 +314,19 @@ msgid "Mandate Required" msgstr "Mandato Richiesto" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "Il Mandato dovrebbe essere in stato Cancellato." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Il Mandato dovrebbe essere in stato Bozza o Valido." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "Il Mandato dovrebbe essere in stato Bozza." @@ -426,7 +426,7 @@ msgid "Payment Methods" msgstr "Metodi di pagamento" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -485,14 +485,14 @@ msgid "Status" msgstr "Stato" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" "La società del mandato %s è diversa rispetto alla società del partner %s." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "La data di firma del mandato '%s' è nel futuro!" @@ -517,7 +517,7 @@ msgstr "" "mandato %s)." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -604,7 +604,7 @@ msgstr "" "mandati collegati che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -614,7 +614,7 @@ msgstr "" "pagamento che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -624,7 +624,7 @@ msgstr "" "collegate che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -634,7 +634,7 @@ msgstr "" "contabili collegate che appartengono ad un altra company." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/lt.po b/account_banking_mandate/i18n/lt.po index 3d4bf7370f4..1394f96f12f 100644 --- a/account_banking_mandate/i18n/lt.po +++ b/account_banking_mandate/i18n/lt.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nb_NO.po b/account_banking_mandate/i18n/nb_NO.po index 0205e427eb1..85d0324e611 100644 --- a/account_banking_mandate/i18n/nb_NO.po +++ b/account_banking_mandate/i18n/nb_NO.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nl.po b/account_banking_mandate/i18n/nl.po index 331911be653..309dd52785a 100644 --- a/account_banking_mandate/i18n/nl.po +++ b/account_banking_mandate/i18n/nl.po @@ -119,7 +119,7 @@ msgid "Cancelled" msgstr "Geannuleerd" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -129,7 +129,7 @@ msgstr "" "gekoppeld is. " #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Kan mandaat '%s' niet goedkeuren zonder een datum of handtekening." @@ -312,19 +312,19 @@ msgid "Mandate Required" msgstr "Bankrekening verplicht" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "Mandaat moet in de 'annulleer' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "Mandaat moet in de 'geldig' of 'concept' status zijn." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "Mandaat moet in de 'concept' status zijn." @@ -426,7 +426,7 @@ msgid "Payment Methods" msgstr "Betaalwijzes" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -485,13 +485,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "De datum van de handtekening van mandaat '%s' is in de toekomts!" @@ -512,7 +512,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -595,7 +595,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -603,7 +603,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -611,7 +611,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -619,7 +619,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/nl_BE.po b/account_banking_mandate/i18n/nl_BE.po index 1c180342b1c..d6c4ca0f50d 100644 --- a/account_banking_mandate/i18n/nl_BE.po +++ b/account_banking_mandate/i18n/nl_BE.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pl.po b/account_banking_mandate/i18n/pl.po index 3406466f6ae..c43243aa104 100644 --- a/account_banking_mandate/i18n/pl.po +++ b/account_banking_mandate/i18n/pl.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt.po b/account_banking_mandate/i18n/pt.po index 8128eee170c..8ae58bdd4f5 100644 --- a/account_banking_mandate/i18n/pt.po +++ b/account_banking_mandate/i18n/pt.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt_BR.po b/account_banking_mandate/i18n/pt_BR.po index a0dc3cfe853..a902e5343dd 100644 --- a/account_banking_mandate/i18n/pt_BR.po +++ b/account_banking_mandate/i18n/pt_BR.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgstr "" "Não pode validar a ordem '%s' porque não está anexada a conta bancária." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Não pode validar a ordem '%s' sem uma data de assinatura." @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -414,7 +414,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -473,13 +473,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -500,7 +500,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -579,7 +579,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -587,7 +587,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -595,7 +595,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -603,7 +603,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/pt_PT.po b/account_banking_mandate/i18n/pt_PT.po index 8a7943c8884..b14d84877c6 100644 --- a/account_banking_mandate/i18n/pt_PT.po +++ b/account_banking_mandate/i18n/pt_PT.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -412,7 +412,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -470,13 +470,13 @@ msgid "Status" msgstr "Estado" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -497,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -576,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -584,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -592,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -600,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ro.po b/account_banking_mandate/i18n/ro.po index 9a3361faa05..3a214bfe180 100644 --- a/account_banking_mandate/i18n/ro.po +++ b/account_banking_mandate/i18n/ro.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -411,7 +411,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -469,13 +469,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -496,7 +496,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -575,7 +575,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -583,7 +583,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -591,7 +591,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -599,7 +599,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/ru.po b/account_banking_mandate/i18n/ru.po index 30498c44f8d..26936dad7fe 100644 --- a/account_banking_mandate/i18n/ru.po +++ b/account_banking_mandate/i18n/ru.po @@ -114,7 +114,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -122,7 +122,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -305,19 +305,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -412,7 +412,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -470,13 +470,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -497,7 +497,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -576,7 +576,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -584,7 +584,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -592,7 +592,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -600,7 +600,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/sl.po b/account_banking_mandate/i18n/sl.po index 86baf8ab68f..bd38044bbab 100644 --- a/account_banking_mandate/i18n/sl.po +++ b/account_banking_mandate/i18n/sl.po @@ -113,7 +113,7 @@ msgid "Cancelled" msgstr "Preklicano" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -121,7 +121,7 @@ msgid "" msgstr "Mandata '%s' ni mogoče overiti, ker ni pripet bančnemu računu." #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "Mandata '%s' ni mogoče overiti brez datuma podpisa." @@ -304,19 +304,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -415,7 +415,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, fuzzy, python-format #| msgid "Payment Lines" @@ -474,13 +474,13 @@ msgid "Status" msgstr "Status" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -501,7 +501,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -581,7 +581,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -589,7 +589,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -597,7 +597,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -605,7 +605,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/th.po b/account_banking_mandate/i18n/th.po index abd887d2a88..3f46a092208 100644 --- a/account_banking_mandate/i18n/th.po +++ b/account_banking_mandate/i18n/th.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/tr.po b/account_banking_mandate/i18n/tr.po index 36809529163..6ede1cc0eec 100644 --- a/account_banking_mandate/i18n/tr.po +++ b/account_banking_mandate/i18n/tr.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " diff --git a/account_banking_mandate/i18n/vi.po b/account_banking_mandate/i18n/vi.po index 5881cb7aa05..274c7e6e7af 100644 --- a/account_banking_mandate/i18n/vi.po +++ b/account_banking_mandate/i18n/vi.po @@ -112,7 +112,7 @@ msgid "Cancelled" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:183 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:186 #, python-format msgid "" "Cannot validate the mandate '%s' because it is not attached to a bank " @@ -120,7 +120,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:179 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:182 #, python-format msgid "Cannot validate the mandate '%s' without a date of signature." msgstr "" @@ -303,19 +303,19 @@ msgid "Mandate Required" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:228 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:231 #, python-format msgid "Mandate should be in cancel state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:216 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:219 #, python-format msgid "Mandate should be in draft or valid state." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:207 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:210 #, python-format msgid "Mandate should be in draft state." msgstr "" @@ -410,7 +410,7 @@ msgid "Payment Methods" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:101 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:104 #: model_terms:ir.ui.view,arch_db:account_banking_mandate.views_mandate_form_buttons #, python-format msgid "Payment lines" @@ -468,13 +468,13 @@ msgid "Status" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:132 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:135 #, python-format msgid "The company of the mandate %s differs from the company of partner %s." msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:116 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:119 #, python-format msgid "The date of signature of mandate '%s' is in the future!" msgstr "" @@ -495,7 +495,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:122 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:125 #, python-format msgid "" "The mandate '%s' can't have a date of last debit before the date of " @@ -574,7 +574,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:167 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:170 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists bank payment " @@ -582,7 +582,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:149 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:152 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists invoices " @@ -590,7 +590,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:158 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:161 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists journal items " @@ -598,7 +598,7 @@ msgid "" msgstr "" #. module: account_banking_mandate -#: code:addons/account_banking_mandate/models/account_banking_mandate.py:140 +#: code:addons/account_banking_mandate/models/account_banking_mandate.py:143 #, python-format msgid "" "You cannot change the company of mandate %s, as there exists payment lines " From dc4766b5f741c7d9231de2fad672f7c46609a193 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 17 Jun 2019 10:13:14 +0200 Subject: [PATCH 057/118] [FIX] account_banking_mandate: Adapt migration script to v12 --- .../migrations/12.0.2.0.0/post-migration.py | 2 +- .../migrations/12.0.2.0.0/pre-migration.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py index 224858e87d4..faa289f8850 100644 --- a/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py +++ b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2019 Tecnativa - Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html @@ -13,3 +12,4 @@ def migrate(env, version): openupgrade_90.convert_binary_field_to_attachment( env, {'account.banking.mandate': [('scan', None)]}, ) + diff --git a/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py index 930e315f8d8..dd6f4e38a05 100644 --- a/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py +++ b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2019 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -12,6 +11,7 @@ @openupgrade.migrate() -def migrate(cr, version): - if openupgrade.column_exists(cr, 'account_banking_mandate', 'scan'): - openupgrade.rename_columns(cr, column_renames) +def migrate(env, version): + if openupgrade.column_exists(env.cr, 'account_banking_mandate', 'scan'): + openupgrade.rename_columns(env.cr, column_renames) + From 5695bfd85b0f69785d8d6a543273bcf3954af024 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 17 Jun 2019 11:38:09 +0200 Subject: [PATCH 058/118] [FIX] account_banking_mandate: flake8 --- account_banking_mandate/migrations/12.0.2.0.0/post-migration.py | 1 - account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py | 1 - 2 files changed, 2 deletions(-) diff --git a/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py index faa289f8850..23a9b540e9f 100644 --- a/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py +++ b/account_banking_mandate/migrations/12.0.2.0.0/post-migration.py @@ -12,4 +12,3 @@ def migrate(env, version): openupgrade_90.convert_binary_field_to_attachment( env, {'account.banking.mandate': [('scan', None)]}, ) - diff --git a/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py index dd6f4e38a05..ad0edfbfe92 100644 --- a/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py +++ b/account_banking_mandate/migrations/12.0.2.0.0/pre-migration.py @@ -14,4 +14,3 @@ def migrate(env, version): if openupgrade.column_exists(env.cr, 'account_banking_mandate', 'scan'): openupgrade.rename_columns(env.cr, column_renames) - From cabb8f2c6314e8c45e93522e3243468ff5f7b5a5 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 02:40:55 +0000 Subject: [PATCH 059/118] [UPD] README.rst --- account_banking_mandate/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_banking_mandate/static/description/index.html b/account_banking_mandate/static/description/index.html index e1745f33e46..f8c608de2f3 100644 --- a/account_banking_mandate/static/description/index.html +++ b/account_banking_mandate/static/description/index.html @@ -3,7 +3,7 @@ - + Account Banking Mandate