mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
Merge pull request #521 from Tecnativa/12.0-mig-account_banking_mandate
[12.0][mig] account_banking_mandate: Migrate to V12.0
This commit is contained in:
101
account_banking_mandate/README.rst
Normal file
101
account_banking_mandate/README.rst
Normal file
@@ -0,0 +1,101 @@
|
||||
=======================
|
||||
Account Banking Mandate
|
||||
=======================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--payment-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/bank-payment/tree/12.0/account_banking_mandate
|
||||
:alt: OCA/bank-payment
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/97/12.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
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.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
This module depends on :
|
||||
* account_payment
|
||||
|
||||
This module is part of the OCA/bank-payment suite.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use this module, see menu "Invoicing/Accounting > Payments > Debit Orders"
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-payment/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 <https://github.com/OCA/bank-payment/issues/new?body=module:%20account_banking_mandate%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Compassion CH
|
||||
* Tecnativa
|
||||
* Akretion
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Alexandre Fayolle
|
||||
* Stéphane Bidoul <stephane.bidoul@acsone.eu>
|
||||
* Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
* Cédric Pigeon <cedric.pigeon@acsone.eu>
|
||||
* Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/bank-payment <https://github.com/OCA/bank-payment/tree/12.0/account_banking_mandate>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
2
account_banking_mandate/__init__.py
Normal file
2
account_banking_mandate/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
from . import models
|
||||
35
account_banking_mandate/__manifest__.py
Normal file
35
account_banking_mandate/__manifest__.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2015-16 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# Copyright 2017 Tecnativa - Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
'name': 'Account Banking Mandate',
|
||||
'summary': 'Banking mandates',
|
||||
'version': '12.0.1.0.0',
|
||||
'license': 'AGPL-3',
|
||||
'author': "Compassion CH, "
|
||||
"Tecnativa, "
|
||||
"Akretion, "
|
||||
"Odoo Community Association (OCA)",
|
||||
'website': 'https://github.com/OCA/bank-payment',
|
||||
'category': 'Banking addons',
|
||||
'depends': [
|
||||
'account_payment_order',
|
||||
],
|
||||
'data': [
|
||||
'views/account_banking_mandate_view.xml',
|
||||
'views/account_payment_method.xml',
|
||||
'views/account_invoice_view.xml',
|
||||
'views/account_payment_line.xml',
|
||||
'views/res_partner_bank_view.xml',
|
||||
'views/res_partner.xml',
|
||||
'views/bank_payment_line_view.xml',
|
||||
'views/account_move_line.xml',
|
||||
'data/mandate_reference_sequence.xml',
|
||||
'security/mandate_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'installable': True,
|
||||
}
|
||||
11
account_banking_mandate/data/mandate_reference_sequence.xml
Normal file
11
account_banking_mandate/data/mandate_reference_sequence.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="dd_mandate_seq" model="ir.sequence">
|
||||
<field name="name">DD Mandate Reference</field>
|
||||
<field name="code">account.banking.mandate</field>
|
||||
<field name="prefix">BM</field>
|
||||
<field name="padding" eval="7"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
463
account_banking_mandate/i18n/account_banking_mandate.pot
Normal file
463
account_banking_mandate/i18n/account_banking_mandate.pot
Normal file
@@ -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 ""
|
||||
|
||||
500
account_banking_mandate/i18n/am.po
Normal file
500
account_banking_mandate/i18n/am.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"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: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 "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,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 "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 "Ú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: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 ""
|
||||
501
account_banking_mandate/i18n/ar.po
Normal file
501
account_banking_mandate/i18n/ar.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: account_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 ""
|
||||
533
account_banking_mandate/i18n/ca.po
Normal file
533
account_banking_mandate/i18n/ca.po
Normal file
@@ -0,0 +1,533 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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: 2018-09-26 17:04+0000\n"
|
||||
"Last-Translator: Harald Panten <harald.panten@qubiq.es>\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"
|
||||
|
||||
#. 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 ""
|
||||
"Un mandat bancari és un document signat pel client que et dóna "
|
||||
"l'autorització per fer una o diverses operacions amb el seu compte bancari."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: sql_constraint:account.banking.mandate:0
|
||||
msgid "A Mandate with the same reference already exists for this company!"
|
||||
msgstr ""
|
||||
"Ja existeix un mandat amb la mateixa referència per a aquesta companyia!"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_banking_mandate
|
||||
msgid "A generic banking mandate"
|
||||
msgstr "Un mandat bancari genèric"
|
||||
|
||||
#. 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 ""
|
||||
"Activeu aquesta opció si aquest mètode de pagament requereix que el vostre "
|
||||
"client signi un mandat de dèbit directe amb la vostra companyia."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form
|
||||
msgid "Back to Draft"
|
||||
msgstr "Torna a esborrany"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id
|
||||
msgid "Bank Account"
|
||||
msgstr "Compte bancari"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaris"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_bank_payment_line
|
||||
msgid "Bank Payment Lines"
|
||||
msgstr "Línies de pagament bancari"
|
||||
|
||||
#. 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 "Mandat bancari"
|
||||
|
||||
#. 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 "Mandats bancaris"
|
||||
|
||||
#. 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 ""
|
||||
"Els mandats bancaris representen una autorització que el propietari el "
|
||||
"compte bancari dóna a una companyia per a una operació específica."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: selection:account.banking.mandate,format:0
|
||||
msgid "Basic Mandate"
|
||||
msgstr "Mandat bàsic"
|
||||
|
||||
#. 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 "Cancel·lat"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
#, 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."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.actions.act_window,help:account_banking_mandate.mandate_action
|
||||
msgid "Click to create a new Banking Mandate."
|
||||
msgstr "Premi per a crear un mandat bancari nou."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_company_id
|
||||
msgid "Company"
|
||||
msgstr "Companyia"
|
||||
|
||||
#. 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"
|
||||
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 "Data de signatura del mandat"
|
||||
|
||||
#. 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 de l'últim cobrament"
|
||||
|
||||
#. 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 de càrrec directe"
|
||||
|
||||
#. 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 "Mandats de càrrec directe"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. 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 "Esborrany"
|
||||
|
||||
#. 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 "Expirat"
|
||||
|
||||
#. 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 "Primer mandat vàlid"
|
||||
|
||||
#. 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 "Mandat genèric"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar per"
|
||||
|
||||
#. 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 "Factura"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunt comptable"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el"
|
||||
|
||||
#. 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 "Mandat SEPA"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_format
|
||||
msgid "Mandate Format"
|
||||
msgstr "Format del mandat"
|
||||
|
||||
#. 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 requerit"
|
||||
|
||||
#. 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 "El mandat hauria d'estar en estat cancel·lat."
|
||||
|
||||
#. 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 "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
|
||||
#, python-format
|
||||
msgid "Mandate should be in draft state."
|
||||
msgstr "El mandat hauria de ser en estat esborrany."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.partner_view_buttons
|
||||
msgid "Mandate(s)"
|
||||
msgstr "Mandat(s)"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree
|
||||
msgid "Mandates"
|
||||
msgstr "Mandats"
|
||||
|
||||
#. 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 "Falta el mandat a la línia de pagament %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 "Número de mandats"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: selection:account.banking.mandate,type:0
|
||||
msgid "One-Off"
|
||||
msgstr "Únic"
|
||||
|
||||
#. 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 ""
|
||||
"Només els mandats vàlids poden ser utilitzats a les línies de pagament. Un "
|
||||
"mandat cancel·lat és un mandat que ha estat cancel·lat pel client."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: 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_account_payment_line
|
||||
msgid "Payment Lines"
|
||||
msgstr "Línies de pagament"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr "Mètodes de pagament"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: selection:account.banking.mandate,type:0
|
||||
msgid "Recurrent"
|
||||
msgstr "Recurrent"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_tree
|
||||
msgid "Reference"
|
||||
msgstr "Referència"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "Reference or Partner"
|
||||
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:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form
|
||||
msgid "Related Payment Lines"
|
||||
msgstr "Línies de pagament relacionades"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_scan
|
||||
msgid "Scan of the Mandate"
|
||||
msgstr "Escanejat del mandat"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "Search Banking Mandates"
|
||||
msgstr "Cercar mandats bancaris"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: selection:account.banking.mandate,format:0
|
||||
msgid "Sepa Mandate"
|
||||
msgstr "Mandat SEPA"
|
||||
|
||||
#. 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 "Data de signatura"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_state
|
||||
msgid "Status"
|
||||
msgstr "Estat"
|
||||
|
||||
#. 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 ""
|
||||
"La línia del pagament bancari %s té una empresa diferent a la del mandat "
|
||||
"(%s)."
|
||||
|
||||
#. 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 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
|
||||
#, 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!"
|
||||
|
||||
#. 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 "La factura %s té una empresa diferent a la del mandat associat (%s)."
|
||||
|
||||
#. 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 ""
|
||||
"L'element %s del diari %s té una empresa diferent a la del mandat associat "
|
||||
"(%s)."
|
||||
|
||||
#. 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 mandat '%s' no pot tenir una data d'últim cobrament anterior a la data de "
|
||||
"signatura."
|
||||
|
||||
#. 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 ""
|
||||
"El número de la línia de pagament %s té una companyia diferent a la del "
|
||||
"mandat associat (%s)."
|
||||
|
||||
#. 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ínia de pagament amb el número %s té el compte bancari '%s', que no està "
|
||||
"associat al mandat '%s' (aquest mandat està associat al compte bancari '%s')."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form
|
||||
msgid "Type"
|
||||
msgstr "Tipus"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_type
|
||||
msgid "Type of Mandate"
|
||||
msgstr "Tipus de mandat"
|
||||
|
||||
#. 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 "Referència única del mandat"
|
||||
|
||||
#. 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àlid"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form
|
||||
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 ""
|
||||
"No pot canviar la companyia del número de compte %s, ja que existeixen "
|
||||
"mandats associats que pertanyen a una altra companyia."
|
||||
|
||||
#. 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 ""
|
||||
"No pot canviar la companyia del mandat %s, ja que existeixen línies de "
|
||||
"pagament bancari associades que pertanyen a altres companyies."
|
||||
|
||||
#. 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 ""
|
||||
"No pot canviar la companyia del mandat %s, ja que existeixen factures "
|
||||
"associades que pertanyen a una altra companyia."
|
||||
|
||||
#. 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 ""
|
||||
"No pot canviar les companyies del mandat %s, ja que existeixen elements del "
|
||||
"diari associats que pertanyen a una altra companyia."
|
||||
|
||||
#. 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 ""
|
||||
"No pot canviar la companyia del mandat %s, ja que existeixen línies de "
|
||||
"pagament associades que pertanyen a altres companyies."
|
||||
|
||||
#. 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 ""
|
||||
"Només hauria de tornar un mandat a estat esborrany si va cancel·lar-lo per "
|
||||
"error. Desitja continuar?"
|
||||
500
account_banking_mandate/i18n/cs.po
Normal file
500
account_banking_mandate/i18n/cs.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
500
account_banking_mandate/i18n/da_DK.po
Normal file
500
account_banking_mandate/i18n/da_DK.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# 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"
|
||||
"Language: da_DK\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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 "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"
|
||||
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 ""
|
||||
500
account_banking_mandate/i18n/de.po
Normal file
500
account_banking_mandate/i18n/de.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <transbot@odoo-community.org>, 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"
|
||||
"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: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 "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"
|
||||
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.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 "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: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: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:171
|
||||
#, 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: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 "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 ""
|
||||
"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 "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
|
||||
#: 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 "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 "Bundesland"
|
||||
|
||||
#. 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/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 "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"
|
||||
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
|
||||
#: 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 ""
|
||||
501
account_banking_mandate/i18n/el_GR.po
Normal file
501
account_banking_mandate/i18n/el_GR.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
||||
"el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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 ""
|
||||
534
account_banking_mandate/i18n/es.po
Normal file
534
account_banking_mandate/i18n/es.po
Normal file
@@ -0,0 +1,534 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-09 14:56+0000\n"
|
||||
"PO-Revision-Date: 2018-07-13 09:03+0000\n"
|
||||
"Last-Translator: Enric Tobella <etobella@creublanca.es>\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.0.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 ""
|
||||
"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 "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,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 ""
|
||||
"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 "Devolver a borrador"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_partner_bank_id
|
||||
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
|
||||
#: 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
|
||||
#: 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: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
|
||||
#: 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 ""
|
||||
"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
|
||||
msgid "Basic Mandate"
|
||||
msgstr "Mandato básico"
|
||||
|
||||
#. 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: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."
|
||||
|
||||
#. 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 "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 "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
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. 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 "Fecha de la 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 "Fecha del último cobro"
|
||||
|
||||
#. 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 "Mandato de adeudo directo"
|
||||
|
||||
#. 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 "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 "Nombre mostrado"
|
||||
|
||||
#. 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
|
||||
#: 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_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 "Primer mandato válido"
|
||||
|
||||
#. 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 "Mandato Genérico"
|
||||
|
||||
#. 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,name:account_banking_mandate.model_account_invoice
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
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 "Última modificación en"
|
||||
|
||||
#. 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 "Mandato SEPA"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: 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: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 "Mandato requerido"
|
||||
|
||||
#. 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 "El mandato debe estar en estado cancelado."
|
||||
|
||||
#. 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 "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
|
||||
#, python-format
|
||||
msgid "Mandate should be in draft state."
|
||||
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 "Mandato(s)"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.mandate_partner_bank_tree
|
||||
msgid "Mandates"
|
||||
msgstr "Mandatos"
|
||||
|
||||
#. 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 "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 "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."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: 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_account_payment_line
|
||||
msgid "Payment Lines"
|
||||
msgstr "Líneas de pago"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_payment_method
|
||||
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"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "Reference or Partner"
|
||||
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: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.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
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "Search Banking Mandates"
|
||||
msgstr "Buscar mandatos bancarios"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: selection:account.banking.mandate,format:0
|
||||
msgid "Sepa Mandate"
|
||||
msgstr "Mandato SEPA"
|
||||
|
||||
#. 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 "Fecha de firma"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_search
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. 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/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 ""
|
||||
"La línea del pago bancario %s tiene una empresa diferente que la del mandato "
|
||||
"(%s)."
|
||||
|
||||
#. 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 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
|
||||
#, 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_invoice.py:90
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The invoice %s has a different company than that of the linked mandate %s)."
|
||||
msgstr "La factura %s tiene una empresa diferente que el mandato asociado (%s)."
|
||||
|
||||
#. 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 ""
|
||||
"El elemento %s del diario %s tiene una empresa diferente que el mandato "
|
||||
"asociado (%s)."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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 ""
|
||||
"El número de la línea de pago %s tiene una compañía diferente que el mandato "
|
||||
"asociado (%s)."
|
||||
|
||||
#. 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')."
|
||||
|
||||
#. 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 "Tipo de 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 "Referencia única del mandato"
|
||||
|
||||
#. 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
|
||||
#: model:ir.ui.view,arch_db:account_banking_mandate.view_mandate_form
|
||||
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 ""
|
||||
"No puede cambiar la compañía del número de cuenta %s, ya que existen "
|
||||
"mandatos asociados que pertenecen a otra compañía."
|
||||
|
||||
#. 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 ""
|
||||
"No puede cambiar la compañía del mandato %s, ya que existen líneas de pago "
|
||||
"bancario asociados que pertenecen a otras compañías."
|
||||
|
||||
#. 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 ""
|
||||
"No puede cambiar la compañía del mandato %s, ya que existen facturas "
|
||||
"asociadas que pertenecen a otra compañía."
|
||||
|
||||
#. 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 ""
|
||||
"No puede cambiar las compañía del mandato %s, ya que existen elementos del "
|
||||
"diario asociados que pertenecen a otra compañía."
|
||||
|
||||
#. 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 ""
|
||||
"No puede cambiar la compañía del mandato %s, ya que existen líneas de pago "
|
||||
"asociadas que pertenecen a otras compañías."
|
||||
|
||||
#. 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?"
|
||||
501
account_banking_mandate/i18n/es_CR.po
Normal file
501
account_banking_mandate/i18n/es_CR.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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: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 ""
|
||||
501
account_banking_mandate/i18n/es_EC.po
Normal file
501
account_banking_mandate/i18n/es_EC.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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: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 ""
|
||||
501
account_banking_mandate/i18n/es_ES.po
Normal file
501
account_banking_mandate/i18n/es_ES.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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: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 "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,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 "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 "Ú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: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 ""
|
||||
501
account_banking_mandate/i18n/es_MX.po
Normal file
501
account_banking_mandate/i18n/es_MX.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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: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 ""
|
||||
501
account_banking_mandate/i18n/es_VE.po
Normal file
501
account_banking_mandate/i18n/es_VE.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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: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 ""
|
||||
500
account_banking_mandate/i18n/et.po
Normal file
500
account_banking_mandate/i18n/et.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
502
account_banking_mandate/i18n/fi.po
Normal file
502
account_banking_mandate/i18n/fi.po
Normal file
@@ -0,0 +1,502 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>\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"
|
||||
"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: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 "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.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 "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: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 "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/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 ""
|
||||
501
account_banking_mandate/i18n/fr.po
Normal file
501
account_banking_mandate/i18n/fr.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Nicolas JEUDY <njeudy@panda-chi.io>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <njeudy@panda-chi.io>, 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"
|
||||
"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 "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."
|
||||
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 "Lignes de paiement bancaire"
|
||||
|
||||
#. 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: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 "Contacte"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model.fields,field_description:account_banking_mandate.field_account_banking_mandate_create_uid
|
||||
msgid "Created by"
|
||||
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 "Créée le"
|
||||
|
||||
#. 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 "Nom à afficher"
|
||||
|
||||
#. 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 "Regrouper par"
|
||||
|
||||
#. 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 "Facture"
|
||||
|
||||
#. 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 "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 "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 "Modifié le"
|
||||
|
||||
#. 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 "One-Off"
|
||||
|
||||
#. 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 "Partenaire"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_payment_line
|
||||
msgid "Payment Lines"
|
||||
msgstr "Lignes de règlement"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
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
|
||||
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 "Mandat SEPA"
|
||||
|
||||
#. 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 "État"
|
||||
|
||||
#. 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 "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"
|
||||
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
|
||||
#: 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 ""
|
||||
500
account_banking_mandate/i18n/gl.po
Normal file
500
account_banking_mandate/i18n/gl.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"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: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 "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,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 "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 "ü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: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 ""
|
||||
501
account_banking_mandate/i18n/hr.po
Normal file
501
account_banking_mandate/i18n/hr.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# 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"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_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: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 "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.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 "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
|
||||
#: 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 ""
|
||||
501
account_banking_mandate/i18n/it.po
Normal file
501
account_banking_mandate/i18n/it.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>\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"
|
||||
|
||||
#. 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: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 "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.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 "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: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 ""
|
||||
501
account_banking_mandate/i18n/lt.po
Normal file
501
account_banking_mandate/i18n/lt.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
501
account_banking_mandate/i18n/nb_NO.po
Normal file
501
account_banking_mandate/i18n/nb_NO.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nb_NO/)\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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 "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: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 "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"
|
||||
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,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 "Vis navn"
|
||||
|
||||
#. 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_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 "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 "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"
|
||||
|
||||
#. 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: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 "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/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 ""
|
||||
517
account_banking_mandate/i18n/nl.po
Normal file
517
account_banking_mandate/i18n/nl.po
Normal file
@@ -0,0 +1,517 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <transbot@odoo-community.org>, 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"
|
||||
"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,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: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. "
|
||||
|
||||
#. 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 "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,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 "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,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_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"
|
||||
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,name:account_banking_mandate.model_account_invoice
|
||||
msgid "Invoice"
|
||||
msgstr "Factuur"
|
||||
|
||||
#. 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___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: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: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:171
|
||||
#, 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
|
||||
#: 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"
|
||||
|
||||
#. 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
|
||||
#: 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."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: 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
|
||||
#: 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"
|
||||
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/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_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."
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "Unique Mandate Reference"
|
||||
msgstr "Unieke madaat referentie"
|
||||
|
||||
#. 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
|
||||
#: 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? "
|
||||
501
account_banking_mandate/i18n/nl_BE.po
Normal file
501
account_banking_mandate/i18n/nl_BE.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
501
account_banking_mandate/i18n/pl.po
Normal file
501
account_banking_mandate/i18n/pl.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
500
account_banking_mandate/i18n/pt.po
Normal file
500
account_banking_mandate/i18n/pt.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"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: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 "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 ""
|
||||
|
||||
#. 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 "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: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 ""
|
||||
502
account_banking_mandate/i18n/pt_BR.po
Normal file
502
account_banking_mandate/i18n/pt_BR.po
Normal file
@@ -0,0 +1,502 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_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,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: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."
|
||||
|
||||
#. 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 "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,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 "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,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_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 "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,name:account_banking_mandate.model_account_invoice
|
||||
msgid "Invoice"
|
||||
msgstr "Fatura"
|
||||
|
||||
#. 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 "Ú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: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 "Parceiro"
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: model:ir.model,name:account_banking_mandate.model_account_payment_line
|
||||
msgid "Payment Lines"
|
||||
msgstr "Linhas do pagamento"
|
||||
|
||||
#. 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 "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/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 "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 ""
|
||||
502
account_banking_mandate/i18n/pt_PT.po
Normal file
502
account_banking_mandate/i18n/pt_PT.po
Normal file
@@ -0,0 +1,502 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
# Pedro Castro Silva <pedrocs@sossia.pt>, 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 <transbot@odoo-community.org>\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"
|
||||
"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: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 "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.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 "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: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 "Estado"
|
||||
|
||||
#. 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 ""
|
||||
501
account_banking_mandate/i18n/ro.po
Normal file
501
account_banking_mandate/i18n/ro.po
Normal file
@@ -0,0 +1,501 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
502
account_banking_mandate/i18n/ru.po
Normal file
502
account_banking_mandate/i18n/ru.po
Normal file
@@ -0,0 +1,502 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: account_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 ""
|
||||
506
account_banking_mandate/i18n/sl.po
Normal file
506
account_banking_mandate/i18n/sl.po
Normal file
@@ -0,0 +1,506 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_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,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:148
|
||||
#, 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:144
|
||||
#, 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,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 "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,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 "Prikazni 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 "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_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 "Združ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,name:account_banking_mandate.model_account_invoice
|
||||
msgid "Invoice"
|
||||
msgstr "Račun"
|
||||
|
||||
#. 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 "Zadnjič spremenjeno"
|
||||
|
||||
#. 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: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 "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."
|
||||
|
||||
#. module: account_banking_mandate
|
||||
#: 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 "Plačilne postavke"
|
||||
|
||||
#. 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 "Ponavljajoče se"
|
||||
|
||||
#. 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 "Stanje"
|
||||
|
||||
#. 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/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 ""
|
||||
"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: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"
|
||||
msgstr "Unikatni sklic mandata"
|
||||
|
||||
#. 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
|
||||
#: 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?"
|
||||
500
account_banking_mandate/i18n/th.po
Normal file
500
account_banking_mandate/i18n/th.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_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 ""
|
||||
500
account_banking_mandate/i18n/tr.po
Normal file
500
account_banking_mandate/i18n/tr.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
"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 "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: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 "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,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 "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 "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: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 ""
|
||||
500
account_banking_mandate/i18n/vi.po
Normal file
500
account_banking_mandate/i18n/vi.po
Normal file
@@ -0,0 +1,500 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_banking_mandate
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_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 "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: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 ""
|
||||
9
account_banking_mandate/models/__init__.py
Normal file
9
account_banking_mandate/models/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
from . import account_banking_mandate
|
||||
from . import account_payment_method
|
||||
from . import account_invoice
|
||||
from . import res_partner_bank
|
||||
from . import res_partner
|
||||
from . import account_payment_line
|
||||
from . import bank_payment_line
|
||||
from . import account_move_line
|
||||
194
account_banking_mandate/models/account_banking_mandate.py
Normal file
194
account_banking_mandate/models/account_banking_mandate.py
Normal file
@@ -0,0 +1,194 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2015-16 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# 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
|
||||
|
||||
|
||||
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'
|
||||
|
||||
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')
|
||||
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',
|
||||
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)
|
||||
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='onchange',
|
||||
copy=False,
|
||||
)
|
||||
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([
|
||||
('draft', 'Draft'),
|
||||
('valid', 'Valid'),
|
||||
('expired', 'Expired'),
|
||||
('cancel', 'Cancelled'),
|
||||
], string='Status', default='draft', track_visibility='onchange',
|
||||
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='account.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.multi
|
||||
@api.constrains('signature_date', 'last_debit_date')
|
||||
def _check_dates(self):
|
||||
for mandate in self:
|
||||
if (mandate.signature_date and
|
||||
mandate.signature_date > fields.Date.context_today(
|
||||
mandate)):
|
||||
raise ValidationError(
|
||||
_("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 ValidationError(
|
||||
_("The mandate '%s' can't have a date of last debit "
|
||||
"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', 'signature_date')
|
||||
def _check_valid_state(self):
|
||||
for mandate in self:
|
||||
if mandate.state == 'valid':
|
||||
if not mandate.signature_date:
|
||||
raise ValidationError(
|
||||
_("Cannot validate the mandate '%s' without a date of "
|
||||
"signature.") % mandate.unique_mandate_reference)
|
||||
if not mandate.partner_bank_id:
|
||||
raise ValidationError(
|
||||
_("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):
|
||||
if vals.get('unique_mandate_reference', 'New') == 'New':
|
||||
vals['unique_mandate_reference'] = \
|
||||
self.env['ir.sequence'].next_by_code(
|
||||
'account.banking.mandate') or 'New'
|
||||
return super(AccountBankingMandate, self).create(vals)
|
||||
|
||||
@api.multi
|
||||
@api.onchange('partner_bank_id')
|
||||
def mandate_partner_bank_change(self):
|
||||
for mandate in self:
|
||||
mandate.partner_id = mandate.partner_bank_id.partner_id
|
||||
|
||||
@api.multi
|
||||
def validate(self):
|
||||
for mandate in self:
|
||||
if mandate.state != 'draft':
|
||||
raise UserError(
|
||||
_('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 UserError(
|
||||
_('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 UserError(
|
||||
_('Mandate should be in cancel state.'))
|
||||
self.write({'state': 'draft'})
|
||||
return True
|
||||
93
account_banking_mandate/models/account_invoice.py
Normal file
93
account_banking_mandate/models/account_invoice.py
Normal file
@@ -0,0 +1,93 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
# Copyright 2017 Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class AccountInvoice(models.Model):
|
||||
_inherit = 'account.invoice'
|
||||
|
||||
mandate_id = fields.Many2one(
|
||||
'account.banking.mandate', string='Direct Debit Mandate',
|
||||
ondelete='restrict',
|
||||
readonly=True, states={'draft': [('readonly', False)]})
|
||||
mandate_required = fields.Boolean(
|
||||
related='payment_mode_id.payment_method_id.mandate_required',
|
||||
readonly=True)
|
||||
|
||||
@api.model
|
||||
def line_get_convert(self, line, part):
|
||||
"""Copy mandate from invoice to account move line"""
|
||||
res = super(AccountInvoice, self).line_get_convert(line, part)
|
||||
if line.get('type') == 'dest' and line.get('invoice_id'):
|
||||
invoice = self.browse(line['invoice_id'])
|
||||
if invoice.type in ('out_invoice', 'out_refund'):
|
||||
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'],
|
||||
'_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):
|
||||
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
|
||||
# to refund, and we also need to copy mandate from invoice to refund
|
||||
@api.model
|
||||
def _prepare_refund(
|
||||
self, invoice, date_invoice=None, date=None, description=None,
|
||||
journal_id=None):
|
||||
vals = super(AccountInvoice, self)._prepare_refund(
|
||||
invoice, date_invoice=date_invoice, date=date,
|
||||
description=description, journal_id=journal_id)
|
||||
if invoice.type == 'out_invoice':
|
||||
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()
|
||||
self.set_mandate()
|
||||
return res
|
||||
|
||||
@api.onchange('payment_mode_id')
|
||||
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))
|
||||
49
account_banking_mandate/models/account_move_line.py
Normal file
49
account_banking_mandate/models/account_move_line.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# Copyright Akretion (http://www.akretion.com/)
|
||||
# Copyright 2017 Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = 'account.move.line'
|
||||
|
||||
mandate_id = fields.Many2one(
|
||||
'account.banking.mandate', string='Direct Debit Mandate',
|
||||
ondelete='restrict')
|
||||
|
||||
@api.multi
|
||||
def _prepare_payment_line_vals(self, payment_order):
|
||||
vals = super(AccountMoveLine, self)._prepare_payment_line_vals(
|
||||
payment_order)
|
||||
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
|
||||
|
||||
@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))
|
||||
53
account_banking_mandate/models/account_payment_line.py
Normal file
53
account_banking_mandate/models/account_payment_line.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2015-16 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# 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
|
||||
|
||||
|
||||
class AccountPaymentLine(models.Model):
|
||||
_inherit = 'account.payment.line'
|
||||
|
||||
mandate_id = fields.Many2one(
|
||||
comodel_name='account.banking.mandate', string='Direct Debit Mandate',
|
||||
domain=[('state', '=', 'valid')])
|
||||
mandate_required = fields.Boolean(
|
||||
related='order_id.payment_method_id.mandate_required', readonly=True)
|
||||
|
||||
@api.multi
|
||||
@api.constrains('mandate_id', 'partner_bank_id')
|
||||
def _check_mandate_bank_link(self):
|
||||
for pline in self:
|
||||
if (pline.mandate_id and pline.partner_bank_id and
|
||||
pline.mandate_id.partner_bank_id !=
|
||||
pline.partner_bank_id):
|
||||
raise ValidationError(_(
|
||||
"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').") %
|
||||
(pline.name,
|
||||
pline.partner_bank_id.acc_number,
|
||||
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()
|
||||
if self.mandate_required and not self.mandate_id:
|
||||
raise UserError(_(
|
||||
'Missing Mandate on payment line %s') % self.name)
|
||||
return res
|
||||
13
account_banking_mandate/models/account_payment_method.py
Normal file
13
account_banking_mandate/models/account_payment_method.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Copyright 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class AccountPaymentMethod(models.Model):
|
||||
_inherit = "account.payment.method"
|
||||
|
||||
mandate_required = fields.Boolean(
|
||||
string='Mandate Required',
|
||||
help="Activate this option if this payment method requires your "
|
||||
"customer to sign a direct debit mandate with your company.")
|
||||
21
account_banking_mandate/models/bank_payment_line.py
Normal file
21
account_banking_mandate/models/bank_payment_line.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2015-16 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
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
|
||||
50
account_banking_mandate/models/res_partner.py
Normal file
50
account_banking_mandate/models/res_partner.py
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
# Copyright 2017 Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import models, fields, api
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
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):
|
||||
mandate_data = self.env['account.banking.mandate'].read_group(
|
||||
[('partner_id', 'in', self.ids)], ['partner_id'], ['partner_id'])
|
||||
mapped_data = dict([
|
||||
(mandate['partner_id'][0], mandate['partner_id_count'])
|
||||
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
|
||||
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
|
||||
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' 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
|
||||
27
account_banking_mandate/models/res_partner_bank.py
Normal file
27
account_banking_mandate/models/res_partner_bank.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Copyright 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
||||
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
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 represent an authorization that the bank '
|
||||
'account owner gives to a company for a specific operation.')
|
||||
|
||||
@api.constrains('company_id')
|
||||
def _company_constrains(self):
|
||||
for rpb in self:
|
||||
if self.env['account.banking.mandate'].sudo().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.display_name,))
|
||||
7
account_banking_mandate/readme/CONTRIBUTORS.rst
Normal file
7
account_banking_mandate/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Alexandre Fayolle
|
||||
* Stéphane Bidoul <stephane.bidoul@acsone.eu>
|
||||
* Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
* Cédric Pigeon <cedric.pigeon@acsone.eu>
|
||||
* Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
8
account_banking_mandate/readme/DESCRIPTION.rst
Normal file
8
account_banking_mandate/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,8 @@
|
||||
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.
|
||||
4
account_banking_mandate/readme/INSTALL.rst
Normal file
4
account_banking_mandate/readme/INSTALL.rst
Normal file
@@ -0,0 +1,4 @@
|
||||
This module depends on :
|
||||
* account_payment
|
||||
|
||||
This module is part of the OCA/bank-payment suite.
|
||||
1
account_banking_mandate/readme/USAGE.rst
Normal file
1
account_banking_mandate/readme/USAGE.rst
Normal file
@@ -0,0 +1 @@
|
||||
To use this module, see menu "Invoicing/Accounting > Payments > Debit Orders"
|
||||
3
account_banking_mandate/security/ir.model.access.csv
Normal file
3
account_banking_mandate/security/ir.model.access.csv
Normal file
@@ -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_order.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
|
||||
|
21
account_banking_mandate/security/mandate_security.xml
Normal file
21
account_banking_mandate/security/mandate_security.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
|
||||
<odoo noupdate="1">
|
||||
|
||||
|
||||
<record id="account_banking_mandate_rule" model="ir.rule">
|
||||
<field name="name">Banking Mandate multi-company</field>
|
||||
<field name="model_id" ref="model_account_banking_mandate"/>
|
||||
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_unlink" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
BIN
account_banking_mandate/static/description/icon.png
Normal file
BIN
account_banking_mandate/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
445
account_banking_mandate/static/description/index.html
Normal file
445
account_banking_mandate/static/description/index.html
Normal file
@@ -0,0 +1,445 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
|
||||
<title>Account Banking Mandate</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="account-banking-mandate">
|
||||
<h1 class="title">Account Banking Mandate</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/bank-payment/tree/12.0/account_banking_mandate"><img alt="OCA/bank-payment" src="https://img.shields.io/badge/github-OCA%2Fbank--payment-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/97/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module adds a generic model for banking mandates.
|
||||
These mandates can be specialized to fit any banking mandates (such as sepa or lsv).</p>
|
||||
<p>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.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="installation">
|
||||
<h1><a class="toc-backref" href="#id1">Installation</a></h1>
|
||||
<p>This module depends on :
|
||||
* account_payment</p>
|
||||
<p>This module is part of the OCA/bank-payment suite.</p>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
|
||||
<p>To use this module, see menu “Invoicing/Accounting > Payments > Debit Orders”</p>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/bank-payment/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/bank-payment/issues/new?body=module:%20account_banking_mandate%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Compassion CH</li>
|
||||
<li>Tecnativa</li>
|
||||
<li>Akretion</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Alexis de Lattre <<a class="reference external" href="mailto:alexis.delattre@akretion.com">alexis.delattre@akretion.com</a>></li>
|
||||
<li>Pedro M. Baeza <<a class="reference external" href="mailto:pedro.baeza@tecnativa.com">pedro.baeza@tecnativa.com</a>></li>
|
||||
<li>Alexandre Fayolle</li>
|
||||
<li>Stéphane Bidoul <<a class="reference external" href="mailto:stephane.bidoul@acsone.eu">stephane.bidoul@acsone.eu</a>></li>
|
||||
<li>Sergio Teruel <<a class="reference external" href="mailto:sergio.teruel@tecnativa.com">sergio.teruel@tecnativa.com</a>></li>
|
||||
<li>Cédric Pigeon <<a class="reference external" href="mailto:cedric.pigeon@acsone.eu">cedric.pigeon@acsone.eu</a>></li>
|
||||
<li>Carlos Dauden <<a class="reference external" href="mailto:carlos.dauden@tecnativa.com">carlos.dauden@tecnativa.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/bank-payment/tree/12.0/account_banking_mandate">OCA/bank-payment</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
3
account_banking_mandate/tests/__init__.py
Normal file
3
account_banking_mandate/tests/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
from . import test_mandate
|
||||
from . import test_invoice_mandate
|
||||
232
account_banking_mandate/tests/test_invoice_mandate.py
Normal file
232
account_banking_mandate/tests/test_invoice_mandate.py
Normal file
@@ -0,0 +1,232 @@
|
||||
|
||||
# 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_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
|
||||
).create({}).run()
|
||||
|
||||
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_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.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()
|
||||
|
||||
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_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),
|
||||
('company_id', '=', self.company.id)],
|
||||
limit=1).id
|
||||
|
||||
self.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,
|
||||
})
|
||||
|
||||
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
|
||||
137
account_banking_mandate/tests/test_mandate.py
Normal file
137
account_banking_mandate/tests/test_mandate.py
Normal file
@@ -0,0 +1,137 @@
|
||||
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
# 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_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()
|
||||
self.assertEqual(mandate.state, 'valid')
|
||||
mandate.cancel()
|
||||
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['res.partner.bank'].create({
|
||||
'acc_number': '1234',
|
||||
'company_id': self.company_2.id,
|
||||
'partner_id': self.company_2.partner_id.id,
|
||||
})
|
||||
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 = self.env['res.partner.bank'].create({
|
||||
'acc_number': '1234',
|
||||
'company_id': self.company_2.id,
|
||||
'partner_id': self.company_2.partner_id.id,
|
||||
})
|
||||
with self.assertRaises(ValidationError):
|
||||
bank_account.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
|
||||
131
account_banking_mandate/views/account_banking_mandate_view.xml
Normal file
131
account_banking_mandate/views/account_banking_mandate_view.xml
Normal file
@@ -0,0 +1,131 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2013-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="view_mandate_form" model="ir.ui.view">
|
||||
<field name="name">view.mandate.form</field>
|
||||
<field name="model">account.banking.mandate</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Banking Mandate">
|
||||
<header>
|
||||
<button name="validate" type="object" string="Validate" states="draft" class="oe_highlight"
|
||||
invisible="context.get('mandate_bank_partner_view')"/>
|
||||
<button name="cancel" type="object" string="Cancel" states="draft,valid"
|
||||
invisible="context.get('mandate_bank_partner_view')"/>
|
||||
<button name="back2draft" type="object" string="Back to Draft"
|
||||
states="cancel" groups="account.group_account_manager"
|
||||
confirm="You should set a mandate back to draft only if you cancelled it by mistake. Do you want to continue?"
|
||||
invisible="context.get('mandate_bank_partner_view')"/>
|
||||
<field name="state" widget="statusbar"/>
|
||||
</header>
|
||||
<sheet>
|
||||
<div class="oe_title">
|
||||
<h1>
|
||||
<field name="unique_mandate_reference"
|
||||
class="oe_inline"
|
||||
readonly="1"/>
|
||||
</h1>
|
||||
</div>
|
||||
<group name="main">
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
<field name="format" string="Format"/>
|
||||
<field name="type" string="Type"/>
|
||||
<field name="partner_bank_id"
|
||||
options="{'create_name_field': 'acc_number'}"
|
||||
invisible="context.get('mandate_bank_partner_view')" />
|
||||
<field name="partner_id"
|
||||
invisible="context.get('mandate_bank_partner_view')"
|
||||
readonly="True"/>
|
||||
<field name="signature_date"/>
|
||||
<field name="scan"/>
|
||||
<field name="last_debit_date"/>
|
||||
</group>
|
||||
<group name="payment_lines" string="Related Payment Lines">
|
||||
<field name="payment_line_ids" nolabel="1"/>
|
||||
</group>
|
||||
</sheet>
|
||||
<div class="oe_chatter">
|
||||
<field name="message_follower_ids" widget="mail_followers"/>
|
||||
<field name="message_ids" widget="mail_thread"/>
|
||||
</div>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_mandate_tree" model="ir.ui.view">
|
||||
<field name="name">view.mandate.tree</field>
|
||||
<field name="model">account.banking.mandate</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Banking Mandate" colors="blue:state=='draft';black:state in ('expired', 'cancel')">
|
||||
<field name="id" invisible="1"/>
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
<field name="partner_id" invisible="context.get('mandate_bank_partner_view')"/>
|
||||
<field name="format" string="Format"/>
|
||||
<field name="unique_mandate_reference" string="Reference"/>
|
||||
<field name="signature_date" string="Signature Date"/>
|
||||
<field name="last_debit_date"/>
|
||||
<button name="validate"
|
||||
type="object"
|
||||
icon="fa-check"
|
||||
string="Validate"
|
||||
attrs="{'invisible': ['|', ('id', '=', False), ('state', '!=', 'draft')]}"/>
|
||||
<button name="cancel"
|
||||
type="object"
|
||||
icon="fa-times"
|
||||
string="Cancel"
|
||||
attrs="{'invisible': ['|', ('id', '=', False), ('state', '=', 'cancel')]}"/>
|
||||
<button name="back2draft"
|
||||
type="object"
|
||||
icon="fa-undo"
|
||||
string="Draft"
|
||||
groups="account.group_account_manager"
|
||||
attrs="{'invisible': ['|', ('id', '=', False), ('state', '!=', 'cancel')]}"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_mandate_search" model="ir.ui.view">
|
||||
<field name="name">view.mandate.search</field>
|
||||
<field name="model">account.banking.mandate</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Banking Mandates">
|
||||
<field name="unique_mandate_reference" string="Reference or Partner" filter_domain="['|', ('unique_mandate_reference', 'ilike', self), ('partner_id', 'ilike', self)]"/>
|
||||
<field name="partner_id"/>
|
||||
<filter name="draft" string="Draft" domain="[('state', '=', 'draft')]" />
|
||||
<filter name="valid" string="Valid" domain="[('state', '=', 'valid')]" />
|
||||
<filter name="cancel" string="Cancelled" domain="[('state', '=', 'cancel')]" />
|
||||
<filter name="expired" string="Expired" domain="[('state', '=', 'expired')]" />
|
||||
<group string="Group By" name="groupby">
|
||||
<filter name="state_groupby" string="State" context="{'group_by': 'state'}"/>
|
||||
<filter name="signature_date_groupby" string="Signature Date" context="{'group_by': 'signature_date'}"/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="mandate_action" model="ir.actions.act_window">
|
||||
<field name="name">Banking Mandates</field>
|
||||
<field name="res_model">account.banking.mandate</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="help" type="html">
|
||||
<p class="oe_view_nocontent_create">
|
||||
Click to create a new Banking Mandate.
|
||||
</p><p>
|
||||
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.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<menuitem id="mandate_menu"
|
||||
parent="account_payment_order.payment_root"
|
||||
action="mandate_action"
|
||||
sequence="30"
|
||||
/>
|
||||
|
||||
|
||||
</odoo>
|
||||
24
account_banking_mandate/views/account_invoice_view.xml
Normal file
24
account_banking_mandate/views/account_invoice_view.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2013-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="invoice_form" model="ir.ui.view">
|
||||
<field name="name">add.mandate.on.customer.invoice.form</field>
|
||||
<field name="model">account.invoice</field>
|
||||
<field name="inherit_id" ref="account_payment_partner.invoice_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_id"
|
||||
domain="[('partner_id', '=', commercial_partner_id), ('state', '=', 'valid')]"
|
||||
attrs="{'required': [('mandate_required', '=', True)], 'invisible': [('mandate_required', '=', False)]}"/>
|
||||
<field name="mandate_required" invisible="1"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
23
account_banking_mandate/views/account_move_line.xml
Normal file
23
account_banking_mandate/views/account_move_line.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="view_move_line_form" model="ir.ui.view">
|
||||
<field name="name">account_banking_mandate.move_line_form</field>
|
||||
<field name="model">account.move.line</field>
|
||||
<field name="inherit_id" ref="account_payment_order.view_move_line_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_id"
|
||||
domain="[('partner_id', '=', partner_id), ('state', '=', 'valid')]"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
37
account_banking_mandate/views/account_payment_line.xml
Normal file
37
account_banking_mandate/views/account_payment_line.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2013-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="account_payment_line_form" model="ir.ui.view">
|
||||
<field name="name">account_banking_mandate.account.payment.line.form</field>
|
||||
<field name="model">account.payment.line</field>
|
||||
<field name="inherit_id" ref="account_payment_order.account_payment_line_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_required" invisible="1"/>
|
||||
<field name="mandate_id"
|
||||
domain="[('partner_bank_id', '=', partner_bank_id), ('state', '=', 'valid')]"
|
||||
attrs="{'invisible': [('mandate_required', '=', False)], 'required': [('mandate_required', '=', True)]}"
|
||||
context="{'default_partner_bank_id': partner_bank_id}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="account_payment_line_tree" model="ir.ui.view">
|
||||
<field name="name">account_banking_mandate.account.payment.line.tree</field>
|
||||
<field name="model">account.payment.line</field>
|
||||
<field name="inherit_id" ref="account_payment_order.account_payment_line_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_id"
|
||||
invisible="context.get('default_payment_type') != 'inbound'"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
18
account_banking_mandate/views/account_payment_method.xml
Normal file
18
account_banking_mandate/views/account_payment_method.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="account_payment_method_form" model="ir.ui.view">
|
||||
<field name="name">account_banking_mandate.account.payment.method.form</field>
|
||||
<field name="model">account.payment.method</field>
|
||||
<field name="inherit_id" ref="account_payment_mode.account_payment_method_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="bank_account_required" position="after">
|
||||
<field name="mandate_required"
|
||||
attrs="{'invisible': [('payment_type', '!=', 'inbound')]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
34
account_banking_mandate/views/bank_payment_line_view.xml
Normal file
34
account_banking_mandate/views/bank_payment_line_view.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="bank_payment_line_form" model="ir.ui.view">
|
||||
<field name="name">banking.mandate.bank.payment.line.form</field>
|
||||
<field name="model">bank.payment.line</field>
|
||||
<field name="inherit_id" ref="account_payment_order.bank_payment_line_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_id"
|
||||
invisible="context.get('default_payment_type')!='inbound'"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="bank_payment_line_tree" model="ir.ui.view">
|
||||
<field name="name">banking.mandate.bank.payment.line.tree</field>
|
||||
<field name="model">bank.payment.line</field>
|
||||
<field name="inherit_id" ref="account_payment_order.bank_payment_line_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_bank_id" position="after">
|
||||
<field name="mandate_id" string="Mandate"
|
||||
invisible="context.get('default_payment_type')!='inbound'"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
25
account_banking_mandate/views/res_partner.xml
Normal file
25
account_banking_mandate/views/res_partner.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="partner_view_buttons" model="ir.ui.view">
|
||||
<field name="name">mandate.res.partner.form</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="account.partner_view_buttons"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='%(base.action_res_partner_bank_account_form)d']" position="after">
|
||||
<button type="action" class="btn-link"
|
||||
name="%(account_banking_mandate.mandate_action)d"
|
||||
context="{'search_default_partner_id': active_id, 'default_partner_id': active_id}">
|
||||
<field string="Mandate(s)" name="mandate_count" widget="statinfo"/>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
34
account_banking_mandate/views/res_partner_bank_view.xml
Normal file
34
account_banking_mandate/views/res_partner_bank_view.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
© 2013-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
|
||||
<record id="mandate_partner_bank_form" model="ir.ui.view">
|
||||
<field name="name">mandate.res.partner.bank.form</field>
|
||||
<field name="model">res.partner.bank</field>
|
||||
<field name="inherit_id" ref="base.view_partner_bank_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//form/group" position="inside">
|
||||
<group name="mandates" string="Direct Debit Mandates">
|
||||
<field name="mandate_ids" context="{'mandate_bank_partner_view': True}" nolabel="1"/>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="mandate_partner_bank_tree" model="ir.ui.view">
|
||||
<field name="name">mandate.res.partner.bank.tree</field>
|
||||
<field name="model">res.partner.bank</field>
|
||||
<field name="inherit_id" ref="base.view_partner_bank_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="partner_id" position="after">
|
||||
<field name="mandate_ids" string="Mandates"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user