From f7e8107291e99f8803b63446cfa450f29d28d769 Mon Sep 17 00:00:00 2001 From: Andreas Osim Date: Tue, 25 Feb 2025 10:55:43 +0100 Subject: [PATCH] UBL Integration --- .../account_payment_mode/README.rst | 57 +++ .../account_payment_mode/__init__.py | 3 + .../account_payment_mode/__manifest__.py | 24 ++ .../demo/payment_demo.xml | 108 ++++++ .../i18n/account_payment_mode.pot | 292 +++++++++++++++ .../account_payment_mode/i18n/am.po | 323 ++++++++++++++++ .../account_payment_mode/i18n/ca.po | 323 ++++++++++++++++ .../account_payment_mode/i18n/da_DK.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/de.po | 353 ++++++++++++++++++ .../account_payment_mode/i18n/el_GR.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/es.po | 352 +++++++++++++++++ .../account_payment_mode/i18n/es_ES.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/fi.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/fr.po | 326 ++++++++++++++++ .../account_payment_mode/i18n/gl.po | 323 ++++++++++++++++ .../account_payment_mode/i18n/hr.po | 325 ++++++++++++++++ .../account_payment_mode/i18n/it.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/nb_NO.po | 325 ++++++++++++++++ .../account_payment_mode/i18n/nl.po | 333 +++++++++++++++++ .../account_payment_mode/i18n/pt.po | 323 ++++++++++++++++ .../account_payment_mode/i18n/pt_BR.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/pt_PT.po | 324 ++++++++++++++++ .../account_payment_mode/i18n/sl.po | 325 ++++++++++++++++ .../account_payment_mode/i18n/tr.po | 323 ++++++++++++++++ .../migrations/11.0.1.0.1/pre-migration.py | 10 + .../account_payment_mode/models/__init__.py | 6 + .../models/account_journal.py | 50 +++ .../models/account_payment_method.py | 40 ++ .../models/account_payment_mode.py | 123 ++++++ .../models/res_partner_bank.py | 17 + .../security/account_payment_mode.xml | 10 + .../security/ir.model.access.csv | 5 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../account_payment_mode/tests/__init__.py | 4 + .../tests/test_account_payment_mode.py | 117 ++++++ .../views/account_journal.xml | 27 ++ .../views/account_payment_method.xml | 61 +++ .../views/account_payment_mode.xml | 72 ++++ .../views/res_partner.xml | 21 ++ .../views/res_partner_bank.xml | 29 ++ 40 files changed, 7298 insertions(+) create mode 100644 ext/custom-addons/account_payment_mode/README.rst create mode 100644 ext/custom-addons/account_payment_mode/__init__.py create mode 100644 ext/custom-addons/account_payment_mode/__manifest__.py create mode 100644 ext/custom-addons/account_payment_mode/demo/payment_demo.xml create mode 100644 ext/custom-addons/account_payment_mode/i18n/account_payment_mode.pot create mode 100644 ext/custom-addons/account_payment_mode/i18n/am.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/ca.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/da_DK.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/de.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/el_GR.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/es.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/es_ES.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/fi.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/fr.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/gl.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/hr.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/it.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/nb_NO.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/nl.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/pt.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/pt_BR.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/pt_PT.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/sl.po create mode 100644 ext/custom-addons/account_payment_mode/i18n/tr.po create mode 100644 ext/custom-addons/account_payment_mode/migrations/11.0.1.0.1/pre-migration.py create mode 100644 ext/custom-addons/account_payment_mode/models/__init__.py create mode 100644 ext/custom-addons/account_payment_mode/models/account_journal.py create mode 100644 ext/custom-addons/account_payment_mode/models/account_payment_method.py create mode 100644 ext/custom-addons/account_payment_mode/models/account_payment_mode.py create mode 100644 ext/custom-addons/account_payment_mode/models/res_partner_bank.py create mode 100644 ext/custom-addons/account_payment_mode/security/account_payment_mode.xml create mode 100644 ext/custom-addons/account_payment_mode/security/ir.model.access.csv create mode 100644 ext/custom-addons/account_payment_mode/static/description/icon.png create mode 100644 ext/custom-addons/account_payment_mode/tests/__init__.py create mode 100644 ext/custom-addons/account_payment_mode/tests/test_account_payment_mode.py create mode 100644 ext/custom-addons/account_payment_mode/views/account_journal.xml create mode 100644 ext/custom-addons/account_payment_mode/views/account_payment_method.xml create mode 100644 ext/custom-addons/account_payment_mode/views/account_payment_mode.xml create mode 100644 ext/custom-addons/account_payment_mode/views/res_partner.xml create mode 100644 ext/custom-addons/account_payment_mode/views/res_partner_bank.xml diff --git a/ext/custom-addons/account_payment_mode/README.rst b/ext/custom-addons/account_payment_mode/README.rst new file mode 100644 index 00000000..3dbfd933 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/README.rst @@ -0,0 +1,57 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +==================== +Account Payment Mode +==================== + +This module adds a new object *account.payment.mode*, that is used to better +classify and route incoming/outgoing payment orders with the banks. + + +Configuration +============= + +To configure this module, you need to go to the menu +*Invoicing/Accounting > Configuration > Management > Payment Modes*. + +Usage +===== + +This module doesn't add any feature, but it is used by several other modules. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/173/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Alexis de Lattre + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/ext/custom-addons/account_payment_mode/__init__.py b/ext/custom-addons/account_payment_mode/__init__.py new file mode 100644 index 00000000..cde864ba --- /dev/null +++ b/ext/custom-addons/account_payment_mode/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/ext/custom-addons/account_payment_mode/__manifest__.py b/ext/custom-addons/account_payment_mode/__manifest__.py new file mode 100644 index 00000000..6ab7d6f8 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/__manifest__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'Account Payment Mode', + 'version': '11.0.1.0.1', + 'license': 'AGPL-3', + 'author': "Akretion,Odoo Community Association (OCA)", + 'website': 'https://github.com/OCA/bank-payment', + 'category': 'Banking addons', + 'depends': ['account'], + 'data': [ + 'security/account_payment_mode.xml', + 'security/ir.model.access.csv', + 'views/account_payment_method.xml', + 'views/account_payment_mode.xml', + 'views/res_partner_bank.xml', + 'views/res_partner.xml', + 'views/account_journal.xml', + ], + 'demo': ['demo/payment_demo.xml'], + 'installable': True, +} diff --git a/ext/custom-addons/account_payment_mode/demo/payment_demo.xml b/ext/custom-addons/account_payment_mode/demo/payment_demo.xml new file mode 100644 index 00000000..29b4c268 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/demo/payment_demo.xml @@ -0,0 +1,108 @@ + + + + + Fiducial Banque + FIDCFR21XXX + 38 rue Sergent Michel Berthet + 69009 + Lyon + + + + + La Banque Postale + PSSTFRPPXXX + 115 rue de Sèvres + 75007 + Paris + + + + + Société Générale + SOGEFRPPXXX + 1 avenue du Roi Fabien 1er + 75008 + Paris + + + + + BNP Paribas Fortis Charleroi + GEBABEBB03A + Charleroi + + + + + + FR76 4242 4242 4242 4242 4242 424 + + + + + + FR20 1242 1242 1242 1242 1242 124 + + + + + + FR66 1212 1212 1212 1212 1212 121 + + + + + + BE96 9988 7766 5544 + + + + + + + + Credit Transfer to Suppliers + + variable + + + + + Direct Debit of suppliers from Société Générale + + variable + + + + + Direct Debit of suppliers from La Banque Postale + + variable + + + + + Inbound Credit Trf Société Générale + + variable + + + + + Inbound Credit Trf La Banque Postale + + variable + + + + + Direct Debit of customers + + variable + + + + + diff --git a/ext/custom-addons/account_payment_mode/i18n/account_payment_mode.pot b/ext/custom-addons/account_payment_mode/i18n/account_payment_mode.pot new file mode 100644 index 00000000..647aa0e1 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/account_payment_mode.pot @@ -0,0 +1,292 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +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_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Activate this option if this payment method requires you to know the bank account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "For payment modes that are always attached to the same bank account of your company (such as wire transfer from customers or SEPA direct debit from suppliers), select 'Fixed'. For payment modes that are not always attached to the same bank account (such as SEPA Direct debit for customers, wire transfer to suppliers), you should select 'Variable', which means that you will select the bank account on the payment order. If your company only has one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "On the payment mode '%s', the bank account link is 'Fixed' but the fixed bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "On the payment mode '%s', the payment method is '%s' (it is in fact a debit method), but this debit method is not part of the debit methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "On the payment mode '%s', the payment method is '%s', but this payment method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "The company of the journal '%s' does not match with the company of the payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "The company of the journal '%s' does not match with the company of the payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "The company of the payment mode '%s', does not match with the company of journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "The company of the payment mode '%s', does not match with the one of the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "This code is used in the code of the Odoo module that handles this payment method. Therefore, if you change it, the generation of the payment file may fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" + diff --git a/ext/custom-addons/account_payment_mode/i18n/am.po b/ext/custom-addons/account_payment_mode/i18n/am.po new file mode 100644 index 00000000..d95acb0e --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/am.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/ca.po b/ext/custom-addons/account_payment_mode/i18n/ca.po new file mode 100644 index 00000000..c9f1bc01 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/ca.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-02 03:43+0000\n" +"PO-Revision-Date: 2018-02-02 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Mode de pagament" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/da_DK.po b/ext/custom-addons/account_payment_mode/i18n/da_DK.po new file mode 100644 index 00000000..ccb56859 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/da_DK.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-02 03:43+0000\n" +"PO-Revision-Date: 2018-02-02 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/oca/teams/23907/" +"da_DK/)\n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Betalingsform" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/de.po b/ext/custom-addons/account_payment_mode/i18n/de.po new file mode 100644 index 00000000..a6e784db --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/de.po @@ -0,0 +1,353 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2019-02-15 17:50+0000\n" +"Last-Translator: Thorsten Vocks \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.4\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "Eine Zahlungsmethode der gleichen Art existiert bereits" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Aktivieren Sie diese Option, wenn mit dieser Zahlungsmethode die " +"Bankkontonummer des Kunden oder Lieferanten bekannt sein muss." + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "Aktiv" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "Erlaubte Bankjournale" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Bankkonto erforderlich" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "Bankkontoart" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bankkonto" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "Überweisung an Lieferanten" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "Lastschriften der Kunden" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "Lastschriften der Lieferanten der La Banque Postale" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "Lastschriften der Lieferanten der Société Générale" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "Fest" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "Festes Bankjournal" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Für Zahlungsarten, die immer dem gleichen Bankkonto Ihres Unternehmens " +"zugeordnet sind (z.B. Überweisung von Kunden oder SEPA-Lastschrift von " +"Lieferanten), wählen Sie \"Fest\". Für Zahlungsarten, die nicht immer dem " +"gleichen Bankkonto zugeordnet sind (z.B. SEPA-Lastschrift für Kunden, " +"Überweisung an Lieferanten), sollten Sie \"Variabel\" wählen, d.h. Sie " +"wählen das Bankkonto im Zahlungsauftrag aus. Wenn Ihr Unternehmen nur ein " +"Bankkonto hat, sollten Sie immer \"Fest\" wählen." + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Gruppieren nach" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "Eingehend" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "Eingangsgutschrift" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "Eingangsgutschrift" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "Verbindung zum Bankkonto" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "Name" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "Name oder Code" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "Notiz" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" +"Bei der Zahlungsart '%s' ist ein 'festes' Bankkonto angegeben, aber es ist " +"kein Bankkonto gesetzt" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" +"Bei der Zahlungsart \"%s\" ist die Zahlungsmethode \"%s\" (es handelt sich " +"tatsächlich um eine Belastungsmethode), aber diese Zahlungsmethode ist nicht " +"Teil der Zahlungsmethoden des festen Bankjournals \"%s\"" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" +"Bei der Zahlungsart '%s' ist die Zahlungsmethode '%s', aber diese " +"Zahlungsmethode ist nicht Teil der Zahlungsmethoden des festen Bankjournals " +"'%s'" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "Ausgehend" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "Zahlungsmethode" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "Zahlungsmethodencode" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "Zahlungsmethoden" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Zahlungsmodus" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "Zahlungsmodi" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Zahlungsart" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "Zahlungsmodi" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "Durchsuche Zahlungsmethoden" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "Durchsuche Zahlungsmodi" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" +"Das Unternehmen des Journals '%s' stimmt nicht mit dem Unternehmens des " +"Zahlungsmodus '%s' überein, wo es als festes Bank Journal verwendet wird." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" +"Das Unternehmen des Journals '%s' stimmt nicht mit Unternehmen der " +"Zahlungsmethode '%s' überein, die in den erlaubten Bankjournalen verwendet " +"wird." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" +"Das Unternehmen der Zahlungsart \"%s\" stimmt nicht mit dem Unternehmen des " +"Journals \"%s\" überein." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" +"Das Unternehmen der Zahlungsart \"%s\" stimmt nicht mit einem der zulässigen " +"Bankjournale überein." + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" +"Dieser Code wird im Code des Odoo-Moduls verwendet, das diese " +"Zahlungsmethode verarbeitet. Wenn Sie diesen ändern, kann eine Generierung " +"der Zahlungsdatei fehlschlagen." + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "Variable" diff --git a/ext/custom-addons/account_payment_mode/i18n/el_GR.po b/ext/custom-addons/account_payment_mode/i18n/el_GR.po new file mode 100644 index 00000000..0630b59c --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/el_GR.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/es.po b/ext/custom-addons/account_payment_mode/i18n/es.po new file mode 100644 index 00000000..25928483 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/es.po @@ -0,0 +1,352 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2018-07-14 09:44+0000\n" +"Last-Translator: Enric Tobella \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_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "Un método de pago del mismo tipo ya existe con este código" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activa esta opción si este método de pago debe requerirte informar el número " +"de cuenta bancaria de tu cliente o proveedor." + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "Activo" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "Diarios de banco permitidos" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Cuenta bancaria requerida" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "Tipo de cuenta bancaria" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Cuentas bancarias" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "Orden de pago a proveedores" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "Orden de cobro de clientes" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "Adeudo directo de proveedores de La Banque Postale" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "Adeudo directo de proveedores de Société Générale" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "Fijo" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "Diario de banco fijo" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" +"Para modos de pago que siempre estarán asociados a la misma cuenta bancaria " +"de la compañía (como las transferencias bancarias de clientes o los débitos " +"directos SEPA de proveedores), selecciona 'Fijado\". Para modos de pagos en " +"los que puede cambiar la cuenta bancaria (como el débito directo de clientes " +"o las transferencias de proveedores), seleccione 'Variable', lo que " +"significa que podrá seleccionar la cuenta bancaria en la orden de pago. Si " +"su compañía tiene una única cuenta bancaria, debería seleccionar siempre " +"'Fijo'." + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "Entrante" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "Transf. entrante La Banque Postale" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "Transf. entrante Société Générale" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "Enlazado a la cuenta bancaria" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "Nombre" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "Nombre o código" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "Nota" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" +"En el modo de pago '%s', el enlace a la cuenta bancaria es 'Fijo' pero la " +"cuenta bancaria fija no está establecida" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" +"En el modo de pago '%s', el método de pago es '%s' (es en realidad un método " +"de adeudo), pero este método de adeudo no es parte de los métodos de adeudo " +"del diario bancario fijo '%s'" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" +"En el modo de pago '%s', el método de pago es '%s', pero este método de pago " +"no es parte de los métodos de pago del diario bancario fijo '%s'" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "Saliente" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "Código del método de pago" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "Métodos de pago" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Modo de pago" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "Modos de pago" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Tipo de pago" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "Modos de pago" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "Buscar métodos de pago" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "Buscar modos de pago" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" +"La compañía del diario %s no corresponde con la compañía del modo de pago '%" +"s' que se usa con el diario fijo de banco." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" +"La compañía del diario %s no corresponde con la compañía del modo de pago '%" +"s' que se usa con los diarios permitidos de banco." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" +"La compañía del modo de pago '%s' no corresponde con la compañía del diario " +"'%s'." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" +"La compañía del modo de pago '%s' no corresponde con la compañía de los " +"diarios de banco permitidos." + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" +"Este código se usa en el código del módulo de Odoo que gestiona el método de " +"pago. Por lo tanto, si lo cambias, la generación del fichero de pago podría " +"fallar." + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "Variable" diff --git a/ext/custom-addons/account_payment_mode/i18n/es_ES.po b/ext/custom-addons/account_payment_mode/i18n/es_ES.po new file mode 100644 index 00000000..ae23e19d --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/es_ES.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/fi.po b/ext/custom-addons/account_payment_mode/i18n/fi.po new file mode 100644 index 00000000..1611ad14 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/fi.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 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: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/fr.po b/ext/custom-addons/account_payment_mode/i18n/fr.po new file mode 100644 index 00000000..542a0caf --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/fr.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +# Nicolas JEUDY , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2018-04-14 11:29+0000\n" +"Last-Translator: Nicolas JEUDY , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activez cette option si ce mode de paiement exige que vous connaissiez le " +"numéro de compte bancaire de votre client ou fournisseur." + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Compte bancaire requis" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Créée par" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Créée le" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Dernière modification par" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "Methodes de règlement" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Mode de paiement" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "Mode de paiement" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/gl.po b/ext/custom-addons/account_payment_mode/i18n/gl.po new file mode 100644 index 00000000..8efa9ee0 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/gl.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/hr.po b/ext/custom-addons/account_payment_mode/i18n/hr.po new file mode 100644 index 00000000..abf0b90b --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/hr.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# 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:46+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_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Bankovni račun je obavezan" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "Metode plaćanja" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "Modeli plaćanja" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +#, fuzzy +msgid "Payment modes" +msgstr "Modeli plaćanja" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/it.po b/ext/custom-addons/account_payment_mode/i18n/it.po new file mode 100644 index 00000000..5d841d89 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/it.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2023-05-25 14:09+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/nb_NO.po b/ext/custom-addons/account_payment_mode/i18n/nb_NO.po new file mode 100644 index 00000000..34d9bd37 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/nb_NO.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-30 07:37+0000\n" +"PO-Revision-Date: 2016-07-30 07:37+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Bankkonto påkrevd" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "Innkommende" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Sist modifisert den." + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "Lenke til bankkonto" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "Betalingsmetode" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Betalingstype" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +#, fuzzy +msgid "Payment modes" +msgstr "Betalingsmetode" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/nl.po b/ext/custom-addons/account_payment_mode/i18n/nl.po new file mode 100644 index 00000000..277f9eeb --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/nl.po @@ -0,0 +1,333 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2018-04-14 11:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "Een betaalwijze met dezelfde naam bestaat al met deze code." + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" +"Activeer deze optie als de betaalwijze verwacht dat u het bankrekeningnummer " +"van uw klant of leverancier kent." + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "Actief" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "Toegestane bankrekeningen" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "Bankrekening verplicht" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "Soort bankrekening" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bankrekeningen" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "Terugbetaling aan leveraciers" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "Incasso van klanten" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "Incaso van leveranciers van La Banque Postale" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "Incasso van leveranciers van Société Générale" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Weergave naam" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "Vast" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "Vaste bankrekening" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Groepeer op" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "Inkomend" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "Inkomende credit Trf La Banque Postale" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "Inkomende credit Trf Société Générale" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "Dagboek" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "Koppeling naar bankrekening" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "Naam" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "Naam of code" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "Opmerking" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" +"Bij de betaalmode '%s', is de bankrekening koppeling ingesteld op 'Vast' " +"maar het bankboek is niet ingesteld." + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" +"Op de betaal mode '%s', de betaalwijze is '%s' (dit is een debet mode), maar " +"de debet mode is geen onderdeel van de debet modes van de vaste bankrekening " +"'%s'" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" +"Op de betaal mode '%s', de betaalwijze is '%s' (dit is een debet mode), maar " +"de debet mode is geen onderdeel van de debet modes van de vaste bankrekening " +"'%s'" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "UItgaand" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "Betaalwijze" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "Code betaalwijze" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "Betaalwijzes" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Betaalmode" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "Betaalmode" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Betaalwijze" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "Zoek betaalwijzes" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "Zoek betaalmode" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "Variabel" diff --git a/ext/custom-addons/account_payment_mode/i18n/pt.po b/ext/custom-addons/account_payment_mode/i18n/pt.po new file mode 100644 index 00000000..262c344e --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/pt.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/pt_BR.po b/ext/custom-addons/account_payment_mode/i18n/pt_BR.po new file mode 100644 index 00000000..7fe5d9e2 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/pt_BR.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2018-04-14 11:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Contas bancárias" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Parceiro" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Modo de pagamento" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Tipo de pagamento" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/pt_PT.po b/ext/custom-addons/account_payment_mode/i18n/pt_PT.po new file mode 100644 index 00000000..47e3a485 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/pt_PT.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/sl.po b/ext/custom-addons/account_payment_mode/i18n/sl.po new file mode 100644 index 00000000..922473e4 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/sl.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-14 11:29+0000\n" +"PO-Revision-Date: 2023-04-12 13:33+0000\n" +"Last-Translator: Matjaz Mozetic \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" +"X-Generator: Weblate 4.14.1\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bančni računi" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "Družba" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "Združi po" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "Metoda plačila" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "Tip plačila" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/i18n/tr.po b/ext/custom-addons/account_payment_mode/i18n/tr.po new file mode 100644 index 00000000..261b5407 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/i18n/tr.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_mode +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 16:15+0000\n" +"PO-Revision-Date: 2016-09-10 16:15+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_payment_mode +#: sql_constraint:account.payment.method:0 +msgid "A payment method of the same type already exists with this code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_method_bank_account_required +msgid "" +"Activate this option if this payment method requires you to know the bank " +"account number of your customer or supplier." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_active +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_active +msgid "Active" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_variable_journal_ids +msgid "Allowed Bank Journals" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_bank_account_required +msgid "Bank Account Required" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_form +#: model:ir.ui.view,arch_db:account_payment_mode.view_partner_bank_tree +msgid "Bank Account Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_company_id +msgid "Company" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_ct1 +msgid "Credit Transfer to Suppliers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_dd1 +msgid "Direct Debit of customers" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd2 +msgid "Direct Debit of suppliers from La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_outbound_dd1 +msgid "Direct Debit of suppliers from Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Fixed" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_fixed_journal_id +msgid "Fixed Bank Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "" +"For payment modes that are always attached to the same bank account of your " +"company (such as wire transfer from customers or SEPA direct debit from " +"suppliers), select 'Fixed'. For payment modes that are not always attached " +"to the same bank account (such as SEPA Direct debit for customers, wire " +"transfer to suppliers), you should select 'Variable', which means that you " +"will select the bank account on the payment order. If your company only has " +"one bank account, you should always select 'Fixed'." +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Group By" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_id +msgid "ID" +msgstr "ID" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Inbound" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct2 +msgid "Inbound Credit Trf La Banque Postale" +msgstr "" + +#. module: account_payment_mode +#: model:account.payment.mode,name:account_payment_mode.payment_mode_inbound_ct1 +msgid "Inbound Credit Trf Société Générale" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model,name:account_payment_mode.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_bank_account_link +msgid "Link to Bank Account" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_name +msgid "Name" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Name or Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_note +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Note" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:73 +#, python-format +msgid "" +"On the payment mode '%s', the bank account link is 'Fixed' but the fixed " +"bank journal is not set" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:96 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s' (it is in fact a debit " +"method), but this debit method is not part of the debit methods of the fixed " +"bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:83 +#, python-format +msgid "" +"On the payment mode '%s', the payment method is '%s', but this payment " +"method is not part of the payment methods of the fixed bank journal '%s'" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Outbound" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_journal_company_partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_id +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_form +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Payment Method" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "Payment Method Code" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_method_action +#: model:ir.model,name:account_payment_mode.model_account_payment_method +#: model:ir.ui.menu,name:account_payment_mode.account_payment_method_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_tree +msgid "Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_form +msgid "Payment Mode" +msgstr "" + +#. module: account_payment_mode +#: model:ir.actions.act_window,name:account_payment_mode.account_payment_mode_action +#: model:ir.model,name:account_payment_mode.model_account_payment_mode +#: model:ir.ui.menu,name:account_payment_mode.account_payment_mode_menu +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_tree +msgid "Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_mode_payment_type +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Payment Type" +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,field_description:account_payment_mode.field_account_payment_method_payment_mode_ids +msgid "Payment modes" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_method_search +msgid "Search Payment Methods" +msgstr "" + +#. module: account_payment_mode +#: model:ir.ui.view,arch_db:account_payment_mode.account_payment_mode_search +msgid "Search Payment Modes" +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:37 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used as Fixed Bank Journal." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_journal.py:46 +#, python-format +msgid "" +"The company of the journal '%s' does not match with the company of the " +"payment mode '%s' where it is being used in the Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:111 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the company of " +"journal '%s'." +msgstr "" + +#. module: account_payment_mode +#: code:addons/account_payment_mode/models/account_payment_mode.py:121 +#, python-format +msgid "" +"The company of the payment mode '%s', does not match with the one of the " +"Allowed Bank Journals." +msgstr "" + +#. module: account_payment_mode +#: model:ir.model.fields,help:account_payment_mode.field_account_payment_mode_payment_method_code +msgid "" +"This code is used in the code of the Odoo module that handles this payment " +"method. Therefore, if you change it, the generation of the payment file may " +"fail." +msgstr "" + +#. module: account_payment_mode +#: selection:account.payment.mode,bank_account_link:0 +msgid "Variable" +msgstr "" diff --git a/ext/custom-addons/account_payment_mode/migrations/11.0.1.0.1/pre-migration.py b/ext/custom-addons/account_payment_mode/migrations/11.0.1.0.1/pre-migration.py new file mode 100644 index 00000000..6d78eb93 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/migrations/11.0.1.0.1/pre-migration.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Copyright 2018 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +def migrate(cr, version): + if not version: + return + + cr.execute('ALTER TABLE res_partner_bank DROP COLUMN IF EXISTS acc_type') diff --git a/ext/custom-addons/account_payment_mode/models/__init__.py b/ext/custom-addons/account_payment_mode/models/__init__.py new file mode 100644 index 00000000..ae4c3c00 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +from . import account_payment_method +from . import account_payment_mode +from . import account_journal +from . import res_partner_bank diff --git a/ext/custom-addons/account_payment_mode/models/account_journal.py b/ext/custom-addons/account_payment_mode/models/account_journal.py new file mode 100644 index 00000000..9af2173c --- /dev/null +++ b/ext/custom-addons/account_payment_mode/models/account_journal.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError + + +class AccountJournal(models.Model): + _inherit = 'account.journal' + + def _default_outbound_payment_methods(self): + all_out = self.env['account.payment.method'].search([ + ('payment_type', '=', 'outbound')]) + return all_out + + def _default_inbound_payment_methods(self): + all_in = self.env['account.payment.method'].search([ + ('payment_type', '=', 'inbound')]) + return all_in + + outbound_payment_method_ids = fields.Many2many( + default=_default_outbound_payment_methods) + inbound_payment_method_ids = fields.Many2many( + default=_default_inbound_payment_methods) + company_partner_id = fields.Many2one( + 'res.partner', related='company_id.partner_id', + readonly=True) # Used in domain of field bank_account_id + + @api.constrains('company_id') + def company_id_account_payment_mode_constrains(self): + for journal in self: + mode = self.env['account.payment.mode'].search([ + ('fixed_journal_id', '=', journal.id), + ('company_id', '!=', journal.company_id.id)], limit=1) + if mode: + raise ValidationError(_( + "The company of the journal '%s' does not match " + "with the company of the payment mode '%s' where it is " + "being used as Fixed Bank Journal.") % ( + journal.name, mode.name)) + mode = self.env['account.payment.mode'].search([ + ('variable_journal_ids', 'in', [journal.id]), + ('company_id', '!=', journal.company_id.id)], limit=1) + if mode: + raise ValidationError(_( + "The company of the journal '%s' does not match " + "with the company of the payment mode '%s' where it is " + "being used in the Allowed Bank Journals.") % ( + journal.name, mode.name)) diff --git a/ext/custom-addons/account_payment_mode/models/account_payment_method.py b/ext/custom-addons/account_payment_mode/models/account_payment_method.py new file mode 100644 index 00000000..554d1e0e --- /dev/null +++ b/ext/custom-addons/account_payment_mode/models/account_payment_method.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields, api + + +class AccountPaymentMethod(models.Model): + _inherit = 'account.payment.method' + + code = fields.Char( + string='Code (Do Not Modify)', + help="This code is used in the code of the Odoo module that handles " + "this payment method. Therefore, if you change it, " + "the generation of the payment file may fail.") + active = fields.Boolean(string='Active', default=True) + bank_account_required = fields.Boolean( + string='Bank Account Required', + help="Activate this option if this payment method requires you to " + "know the bank account number of your customer or supplier.") + payment_mode_ids = fields.One2many( + comodel_name='account.payment.mode', inverse_name='payment_method_id', + string='Payment modes') + + @api.multi + @api.depends('code', 'name', 'payment_type') + def name_get(self): + result = [] + for method in self: + result.append(( + method.id, u'[%s] %s (%s)' % ( + method.code, method.name, method.payment_type) + )) + return result + + _sql_constraints = [( + 'code_payment_type_unique', + 'unique(code, payment_type)', + 'A payment method of the same type already exists with this code' + )] diff --git a/ext/custom-addons/account_payment_mode/models/account_payment_mode.py b/ext/custom-addons/account_payment_mode/models/account_payment_mode.py new file mode 100644 index 00000000..2a6cdf15 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/models/account_payment_mode.py @@ -0,0 +1,123 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields, api, _ +from odoo.exceptions import ValidationError + + +class AccountPaymentMode(models.Model): + """This corresponds to the object payment.mode of v8 with some + important changes. It also replaces the object payment.method + of the module sale_payment_method of OCA/e-commerce""" + _name = "account.payment.mode" + _description = 'Payment Modes' + _order = 'name' + + name = fields.Char(string='Name', required=True, translate=True) + company_id = fields.Many2one( + 'res.company', string='Company', required=True, ondelete='restrict', + default=lambda self: self.env['res.company']._company_default_get( + 'account.payment.mode')) + bank_account_link = fields.Selection([ + ('fixed', 'Fixed'), + ('variable', 'Variable'), + ], string='Link to Bank Account', required=True, + help="For payment modes that are always attached to the same bank " + "account of your company (such as wire transfer from customers or " + "SEPA direct debit from suppliers), select " + "'Fixed'. For payment modes that are not always attached to the same " + "bank account (such as SEPA Direct debit for customers, wire transfer " + "to suppliers), you should select 'Variable', which means that you " + "will select the bank account on the payment order. If your company " + "only has one bank account, you should always select 'Fixed'.") + fixed_journal_id = fields.Many2one( + 'account.journal', string='Fixed Bank Journal', + domain=[('type', '=', 'bank')], ondelete='restrict') + # I need to use the old definition, because I have 2 M2M fields + # pointing to account.journal + variable_journal_ids = fields.Many2many( + comodel_name='account.journal', + relation='account_payment_mode_variable_journal_rel', + column1='payment_mode_id', column2='journal_id', + string='Allowed Bank Journals') + payment_method_id = fields.Many2one( + 'account.payment.method', string='Payment Method', required=True, + ondelete='restrict') # equivalent v8 field : type + payment_type = fields.Selection( + related='payment_method_id.payment_type', readonly=True, store=True, + string="Payment Type") + payment_method_code = fields.Char( + related='payment_method_id.code', readonly=True, store=True, + string='Payment Method Code') + active = fields.Boolean(string='Active', default=True) + # I dropped sale_ok and purchase_ok fields, because it is replaced by + # payment_type = 'inbound' or 'outbound' + # In fact, with the new v9 datamodel, you MUST create 2 payment modes + # for wire transfer : one for wire transfer from your customers (inbound) + # and one for wire transfer to your suppliers (outbound) + note = fields.Text(string="Note", translate=True) + + @api.onchange('company_id') + def _onchange_company_id(self): + for mode in self: + mode.variable_journal_ids = False + mode.fixed_journal_id = False + + @api.constrains( + 'bank_account_link', 'fixed_journal_id', 'payment_method_id') + def bank_account_link_constrains(self): + for mode in self: + if mode.bank_account_link == 'fixed': + if not mode.fixed_journal_id: + raise ValidationError(_( + "On the payment mode '%s', the bank account link is " + "'Fixed' but the fixed bank journal is not set") + % mode.name) + else: + if mode.payment_method_id.payment_type == 'outbound': + if ( + mode.payment_method_id.id not in + mode.fixed_journal_id. + outbound_payment_method_ids.ids): + raise ValidationError(_( + "On the payment mode '%s', the payment method " + "is '%s', but this payment method is not part " + "of the payment methods of the fixed bank " + "journal '%s'") % ( + mode.name, + mode.payment_method_id.name, + mode.fixed_journal_id.name)) + else: + if ( + mode.payment_method_id.id not in + mode.fixed_journal_id. + inbound_payment_method_ids.ids): + raise ValidationError(_( + "On the payment mode '%s', the payment method " + "is '%s' (it is in fact a debit method), " + "but this debit method is not part " + "of the debit methods of the fixed bank " + "journal '%s'") % ( + mode.name, + mode.payment_method_id.name, + mode.fixed_journal_id.name)) + + @api.constrains('company_id', 'fixed_journal_id') + def company_id_fixed_journal_id_constrains(self): + for mode in self: + if mode.fixed_journal_id and mode.company_id != \ + mode.fixed_journal_id.company_id: + raise ValidationError(_( + "The company of the payment mode '%s', does not match " + "with the company of journal '%s'.") % ( + mode.name, mode.fixed_journal_id.name)) + + @api.constrains('company_id', 'variable_journal_ids') + def company_id_variable_journal_ids_constrains(self): + for mode in self: + if any(mode.company_id != j.company_id for j in + mode.variable_journal_ids): + raise ValidationError(_( + "The company of the payment mode '%s', does not match " + "with the one of the Allowed Bank Journals.") % mode.name) diff --git a/ext/custom-addons/account_payment_mode/models/res_partner_bank.py b/ext/custom-addons/account_payment_mode/models/res_partner_bank.py new file mode 100644 index 00000000..a87dfb80 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/models/res_partner_bank.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class ResPartnerBank(models.Model): + _inherit = 'res.partner.bank' + + # I change the label of the field in the view. + # I would also like to store the field to do easy groupby and search, + # but it's not possible because the compute method is inherited + # in base_iban (and maybe in other modules) and, when the field is + # initially computed+stored, it doesn't take into account the + # inherits of the method that compute this field + acc_type = fields.Char(string='Bank Account Type') diff --git a/ext/custom-addons/account_payment_mode/security/account_payment_mode.xml b/ext/custom-addons/account_payment_mode/security/account_payment_mode.xml new file mode 100644 index 00000000..609bc0f7 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/security/account_payment_mode.xml @@ -0,0 +1,10 @@ + + + + + Payment mode multi-company rule + + ['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])] + + + diff --git a/ext/custom-addons/account_payment_mode/security/ir.model.access.csv b/ext/custom-addons/account_payment_mode/security/ir.model.access.csv new file mode 100644 index 00000000..0ff4035e --- /dev/null +++ b/ext/custom-addons/account_payment_mode/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +account.access_account_payment_method,Read access on account.payment.method to Invoice user,account.model_account_payment_method,account.group_account_invoice,1,0,0,0 +access_account_payment_method_full,Full access on account.payment.method to Financial Manager,account.model_account_payment_method,account.group_account_manager,1,1,1,1 +access_account_payment_mode_read,Read access on account.payment.mode to Employees,model_account_payment_mode,base.group_user,1,0,0,0 +access_account_payment_mode_full,Full access on account.payment.mode to Financial Manager,model_account_payment_mode,account.group_account_manager,1,1,1,1 diff --git a/ext/custom-addons/account_payment_mode/static/description/icon.png b/ext/custom-addons/account_payment_mode/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/ext/custom-addons/account_payment_mode/tests/__init__.py b/ext/custom-addons/account_payment_mode/tests/__init__.py new file mode 100644 index 00000000..b0f89817 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2017 Eficent Business and IT Consulting Services S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). +from . import test_account_payment_mode diff --git a/ext/custom-addons/account_payment_mode/tests/test_account_payment_mode.py b/ext/custom-addons/account_payment_mode/tests/test_account_payment_mode.py new file mode 100644 index 00000000..24ef5823 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/tests/test_account_payment_mode.py @@ -0,0 +1,117 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). + +from odoo.tests.common import TransactionCase +from odoo.exceptions import ValidationError + + +class TestAccountPaymentMode(TransactionCase): + def setUp(self): + super(TestAccountPaymentMode, self).setUp() + self.res_users_model = self.env['res.users'] + self.journal_model = self.env['account.journal'] + self.payment_mode_model = self.env['account.payment.mode'] + + # refs + self.manual_out = self.env.ref( + 'account.account_payment_method_manual_out') + # Company + self.company = self.env.ref('base.main_company') + + # Company 2 + self.company_2 = self.env['res.company'].create({ + 'name': 'Company 2', + }) + + self.journal_c1 = self._create_journal('J1', self.company) + self.journal_c2 = self._create_journal('J2', self.company_2) + self.journal_c3 = self._create_journal('J3', self.company) + + self.payment_mode_c1 = self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 1', + 'bank_account_link': 'variable', + 'payment_method_id': self.manual_out.id, + 'company_id': self.company.id, + 'fixed_journal_id': self.journal_c1.id, + 'variable_journal_ids': [(6, 0, [self.journal_c1.id, + self.journal_c3.id])] + }) + + def _create_journal(self, name, company): + # Create a cash account + # Create a journal for cash account + journal = self.journal_model.create({ + 'name': name, + 'code': name, + 'type': 'bank', + 'company_id': company.id, + }) + return journal + + def test_payment_mode_company_consistency_change(self): + # Assertion on the constraints to ensure the consistency + # for company dependent fields + with self.assertRaises(ValidationError): + self.payment_mode_c1. \ + write({'fixed_journal_id': self.journal_c2.id}) + with self.assertRaises(ValidationError): + self.payment_mode_c1.write({ + 'variable_journal_ids': [ + (6, 0, [ + self.journal_c1.id, + self.journal_c2.id, + self.journal_c3.id + ]) + ] + }) + with self.assertRaises(ValidationError): + self.journal_c1.write({'company_id': self.company_2.id}) + + def test_payment_mode_company_consistency_create(self): + # Assertion on the constraints to ensure the consistency + # for company dependent fields + with self.assertRaises(ValidationError): + self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 2', + 'bank_account_link': 'variable', + 'payment_method_id': self.manual_out.id, + 'company_id': self.company.id, + 'fixed_journal_id': self.journal_c2.id + }) + + with self.assertRaises(ValidationError): + self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 3', + 'bank_account_link': 'variable', + 'payment_method_id': self.manual_out.id, + 'company_id': self.company.id, + 'variable_journal_ids': [(6, 0, [self.journal_c2.id])] + }) + + with self.assertRaises(ValidationError): + self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 4', + 'bank_account_link': 'fixed', + 'payment_method_id': self.manual_out.id, + 'company_id': self.company.id, + }) + self.journal_c1.outbound_payment_method_ids = False + with self.assertRaises(ValidationError): + self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 5', + 'bank_account_link': 'fixed', + 'payment_method_id': self.manual_out.id, + 'company_id': self.company.id, + 'fixed_journal_id': self.journal_c1.id + }) + self.journal_c1.inbound_payment_method_ids = False + with self.assertRaises(ValidationError): + self.payment_mode_model.create({ + 'name': 'Direct Debit of suppliers from Bank 5', + 'bank_account_link': 'fixed', + 'payment_method_id': self.env.ref( + 'account.account_payment_method_manual_in').id, + 'company_id': self.company.id, + 'fixed_journal_id': self.journal_c1.id + }) diff --git a/ext/custom-addons/account_payment_mode/views/account_journal.xml b/ext/custom-addons/account_payment_mode/views/account_journal.xml new file mode 100644 index 00000000..f5b86bb7 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/views/account_journal.xml @@ -0,0 +1,27 @@ + + + + + + fix_bank_account_selection.account_journal.form + account.journal + + + + + + + + [('partner_id', '=', company_partner_id)] + + + + 1 + + + + + diff --git a/ext/custom-addons/account_payment_mode/views/account_payment_method.xml b/ext/custom-addons/account_payment_mode/views/account_payment_method.xml new file mode 100644 index 00000000..0602e8bc --- /dev/null +++ b/ext/custom-addons/account_payment_mode/views/account_payment_method.xml @@ -0,0 +1,61 @@ + + + + + + account_payment_method.form + account.payment.method + +
+ + + + + + + +
+
+
+ + + account_payment_method.tree + account.payment.method + + + + + + + + + + + account_payment_method.search + account.payment.method + + + + + + + + + + + + + + Payment Methods + account.payment.method + tree,form + + + + +
diff --git a/ext/custom-addons/account_payment_mode/views/account_payment_mode.xml b/ext/custom-addons/account_payment_mode/views/account_payment_mode.xml new file mode 100644 index 00000000..edaec297 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/views/account_payment_mode.xml @@ -0,0 +1,72 @@ + + + + + account.payment.mode.form + account.payment.mode + +
+ + + + + + + + + + + + + +
+
+
+ + + account.payment.mode.tree + account.payment.mode + + + + + + + + + + + + + account.payment.mode.search + account.payment.mode + + + + + + + + + + + + + + Payment Modes + account.payment.mode + tree,form + + + + +
diff --git a/ext/custom-addons/account_payment_mode/views/res_partner.xml b/ext/custom-addons/account_payment_mode/views/res_partner.xml new file mode 100644 index 00000000..61a1618e --- /dev/null +++ b/ext/custom-addons/account_payment_mode/views/res_partner.xml @@ -0,0 +1,21 @@ + + + + + + + account_payment_mode.res_partner_form + res.partner + + + + {'invisible': [('parent_id', '!=', False), ('is_company', '=', False)]} + + + + + + diff --git a/ext/custom-addons/account_payment_mode/views/res_partner_bank.xml b/ext/custom-addons/account_payment_mode/views/res_partner_bank.xml new file mode 100644 index 00000000..bd4443d5 --- /dev/null +++ b/ext/custom-addons/account_payment_mode/views/res_partner_bank.xml @@ -0,0 +1,29 @@ + + + + + + account_payment_mode.res_partner_bank_form + res.partner.bank + + + + + + + + + + account_payment_mode.res_partner_bank_tree + res.partner.bank + + + + + + + + + +