diff --git a/account_netting/README.rst b/account_netting/README.rst new file mode 100644 index 00000000000..3cb6ff8f8c2 --- /dev/null +++ b/account_netting/README.rst @@ -0,0 +1,105 @@ +=============== +Account netting +=============== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:04db3d1c2df9e5e2daa17195742ca24d519b48644f366d829d8d7fd6f7c7c7ac + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github + :target: https://github.com/OCA/account-financial-tools/tree/18.0/account_netting + :alt: OCA/account-financial-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-financial-tools-18-0/account-financial-tools-18-0-account_netting + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-tools&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to compensate the balance of a receivable account +with the balance of a payable account for the same partner, creating a +journal item that reflects this operation. + +**WARNING**: This operation can be forbidden in your country by the +accounting regulations, so you should check current laws before using +it. For example, in Spain, this is not allowed at first instance, unless +you document well the operation from both parties. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +From any account journal entries view: + +- Accounting/Journal Entries/Journal Items + +select all the lines that corresponds to both AR/AP operations from the +same partner. Click on *Action > Compensate*. If the items don't +correspond to the same partner or they aren't AR/AP accounts, you will +get an error. + +On contrary, a dialog box will be presented with the result of the +operation and a selection of the journal to register the operation. When +you click on the *Compensate* button, a journal entry is created with +the corresponding counterparts of the AR/AP operations. + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Pedro M. Baeza + - Vicent Cubells + - Víctor Martínez + - Marwan Behillil + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-financial-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_netting/__init__.py b/account_netting/__init__.py new file mode 100644 index 00000000000..0c4290c24dd --- /dev/null +++ b/account_netting/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import wizards diff --git a/account_netting/__manifest__.py b/account_netting/__manifest__.py new file mode 100644 index 00000000000..c18d67789df --- /dev/null +++ b/account_netting/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Vicent Cubells - Tecnativa +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + "name": "Account netting", + "version": "18.0.1.0.0", + "summary": "Compensate AR/AP accounts from the same partner", + "category": "Accounting & Finance", + "author": "Tecnativa, Odoo Community Association (OCA)", + "license": "AGPL-3", + "website": "https://github.com/OCA/account-financial-tools", + "depends": ["account"], + "data": [ + "security/ir.model.access.csv", + "wizards/account_move_make_netting_view.xml", + ], + "installable": True, +} diff --git a/account_netting/i18n/account_netting.pot b/account_netting/i18n/account_netting.pot new file mode 100644 index 00000000000..ed161fd0bfc --- /dev/null +++ b/account_netting/i18n/account_netting.pot @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/am.po b/account_netting/i18n/am.po new file mode 100644 index 00000000000..2a3cc3d061a --- /dev/null +++ b/account_netting/i18n/am.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/ar.po b/account_netting/i18n/ar.po new file mode 100644 index 00000000000..e81a26e078a --- /dev/null +++ b/account_netting/i18n/ar.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "المعرف" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "آخر تعديل في" diff --git a/account_netting/i18n/bg.po b/account_netting/i18n/bg.po new file mode 100644 index 00000000000..b02a273aac7 --- /dev/null +++ b/account_netting/i18n/bg.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Отмяна" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Последно обновено на" diff --git a/account_netting/i18n/bs.po b/account_netting/i18n/bs.po new file mode 100644 index 00000000000..6101cac3c68 --- /dev/null +++ b/account_netting/i18n/bs.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje mijenjano" diff --git a/account_netting/i18n/ca.po b/account_netting/i18n/ca.po new file mode 100644 index 00000000000..87a15e5b3a0 --- /dev/null +++ b/account_netting/i18n/ca.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Darrera modificació el" diff --git a/account_netting/i18n/ca_ES.po b/account_netting/i18n/ca_ES.po new file mode 100644 index 00000000000..84ef528d229 --- /dev/null +++ b/account_netting/i18n/ca_ES.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/cs.po b/account_netting/i18n/cs.po new file mode 100644 index 00000000000..af33fc0f520 --- /dev/null +++ b/account_netting/i18n/cs.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Naposled upraveno" diff --git a/account_netting/i18n/da.po b/account_netting/i18n/da.po new file mode 100644 index 00000000000..8bc0931781a --- /dev/null +++ b/account_netting/i18n/da.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuller" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "Id" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sidst ændret den" diff --git a/account_netting/i18n/de.po b/account_netting/i18n/de.po new file mode 100644 index 00000000000..0dc7d0a9d92 --- /dev/null +++ b/account_netting/i18n/de.po @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2018-10-10 13:26+0000\n" +"Last-Translator: Rudolf Schnapka \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.1.1\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Kred/Deb-Verrechnung" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Saldo-Art" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Kompensieren" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zuletzt geändert von" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "Zu zahlen" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "Zu erhalten" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zuletzt geändert am" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Alle Posten müssen ein Kreditoren- oder Debitorenkonto aufweisen" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Kein Posten darf ausgeglichen sein" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Alle Posten müssen einen Partner haben und dieser muss für alle gleich " +#~ "sein." + +#~ msgid "Compensate entries" +#~ msgstr "Posten kompensieren" + +#~ msgid "Move Line" +#~ msgstr "Buchung" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "Die Funktion 'Kompensieren' soll Vorgänge auf unterschiedlichen Konten " +#~ "des gleichen Partners saldieren.\n" +#~ "In diesem Fall gehören alle ausgewählten Posten zum gleichen Konto.\n" +#~ "Verwenden Sie bitte die Funktion 'Ausgleichen'." + +#, fuzzy +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Dieser Vorgang wird Gegenbuchungen zu den ausgewählten kreditorische/" +#~ "debitorischen Konten erzeugen, die sich dann gegenseitig saldieren. Beim " +#~ "Partner ergibt sich folgender Saldo:" + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Sie müssen mindestens 2 Journalposten kompensieren." diff --git a/account_netting/i18n/el_GR.po b/account_netting/i18n/el_GR.po new file mode 100644 index 00000000000..01b01af75a3 --- /dev/null +++ b/account_netting/i18n/el_GR.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Άκυρο" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/en_AU.po b/account_netting/i18n/en_AU.po new file mode 100644 index 00000000000..538af0adbe6 --- /dev/null +++ b/account_netting/i18n/en_AU.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/en_GB.po b/account_netting/i18n/en_GB.po new file mode 100644 index 00000000000..b2fd04e85f7 --- /dev/null +++ b/account_netting/i18n/en_GB.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Last Modified on" diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po new file mode 100644 index 00000000000..7ff10aa3ded --- /dev/null +++ b/account_netting/i18n/es.po @@ -0,0 +1,244 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2023-11-06 20:36+0000\n" +"Last-Translator: Ivorra78 \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 4.17\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Compensación a cobrar/a pagar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Tipo de saldo" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "Divisa" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "Artículos del Diario a Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" +"La línea \"%(line)s\" tiene la cuenta \"%(account)s\" que no es una cuenta a " +"pagar ni a cobrar." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "La línea '%s' no tiene socio." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "La línea '%s' ya está conciliada." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "La línea '%s' no ha sido publicada." + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "Socio" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" +"La función 'Compensar' está pensada para cuadrar operaciones en diferentes " +"cuentas de un mismo interlocutor. Los artículos diarios seleccionados tienen " +"la misma cuenta '%s', por lo que debe utilizar la función 'Compensar' en su " +"lugar." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" +"Los artículos de diario seleccionados tienen socios diferentes: %s. Todos " +"los artículos del diario seleccionados deben tener el mismo interlocutor." + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" +"Esta operación generará un asiento cuyas líneas son contrapartida de las " +"cuentas a cobrar/pagar seleccionadas, y se conciliarán entre sí, dejando " +"este saldo en el interlocutor." + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "A pagar" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "A cobrar" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Asistente para generar movimientos de compensación" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "Debe seleccionar al menos 2 artículos del diario." + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación el" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Todos los apuntes deben tener una cuenta a pagar o a cobrar" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Ningún apunte debe estar conciliado" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Todos los apuntes deben tener una empresa y la empresa debe ser la misma " +#~ "para todos." + +#~ msgid "Compensate entries" +#~ msgstr "Compensar apuntes" + +#~ msgid "Move Line" +#~ msgstr "Apuntes" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "la función 'Compensar' pretende compensar operaciones sobre diferentes " +#~ "cuentas del mismo cliente.\n" +#~ "En este caso todos los apuntes seleccionados pertenencen a la misma " +#~ "cuenta.\n" +#~ "Use entonces la función 'Reconciliar'." + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Esta operación generará apuntes que serán la contrapartida de las cuentas " +#~ "a cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando " +#~ "este saldo en la empresa." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Debe compensar al menos 2 apuntes." diff --git a/account_netting/i18n/es_AR.po b/account_netting/i18n/es_AR.po new file mode 100644 index 00000000000..907477dcd06 --- /dev/null +++ b/account_netting/i18n/es_AR.po @@ -0,0 +1,245 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2023-11-06 05:32+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Compensación AR/AP" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Tipo de Saldo" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "Moneda" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "Apuntes Contables a Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" +"La linea %(line)s tiene como cuenta %(account)s la cual no es una cuenta a " +"pagar o a cobrar." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "La linea '%s' no tiene un contacto." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "La línea '%s' ya está conciliada." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "La línea '%s' no está publicada." + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "Contacto" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" +"La función 'Compensar' tiene como objetivo equilibrar operaciones en " +"diferentes cuentas para el mismo contacto. Los apuntes contables " +"seleccionados tienen la misma cuenta '%s', por lo que debería utilizar la " +"función 'Conciliar' en su lugar." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" +"Los apuntes contables seleccionados tiene diferentes contactos: %s. Todos " +"los apuntes contables deben tener el mismo contacto." + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" +"Esta operación generará un asiento contable cuyas líneas son contrapartida " +"de las cuentas por cobrar/pagar seleccionadas, y se conciliarán entre sí, " +"dejando este saldo en el contacto." + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "A pagar" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "A cobrar" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Asistente para generar movimientos contables para compensación" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "Debería seleccionar al menos 2 apuntes contables." + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Todos los asientos deben tener una cuenta a cobrar o a pagar" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "No se deben conciliar todos los asientos" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Todos los asientos deben tener un contacto y el contacto debe ser el " +#~ "mismo para todos." + +#~ msgid "Compensate entries" +#~ msgstr "Compensar asientos" + +#~ msgid "Move Line" +#~ msgstr "Línea de Movimiento" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "La función 'Compensar' está destinada a cuadrar operaciones en diferentes " +#~ "cuentas para el mismo contacto.\n" +#~ "En este caso, todos los asientos seleccionados pertenecen a la misma " +#~ "cuenta.\n" +#~ " Utilice la función 'Conciliar'." + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Esta operación generará asientos en cuenta que son contrapartida de las " +#~ "cuentas por cobrar/por pagar seleccionadas, y se concilian entre sí, " +#~ "dejando este saldo en el contacto." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Debe compensar al menos dos asientos contables." diff --git a/account_netting/i18n/es_CL.po b/account_netting/i18n/es_CL.po new file mode 100644 index 00000000000..4004a7333a5 --- /dev/null +++ b/account_netting/i18n/es_CL.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/account_netting/i18n/es_CO.po b/account_netting/i18n/es_CO.po new file mode 100644 index 00000000000..e0a714d344c --- /dev/null +++ b/account_netting/i18n/es_CO.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificación el" diff --git a/account_netting/i18n/es_CR.po b/account_netting/i18n/es_CR.po new file mode 100644 index 00000000000..613a5e9d3ff --- /dev/null +++ b/account_netting/i18n/es_CR.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/es_DO.po b/account_netting/i18n/es_DO.po new file mode 100644 index 00000000000..edf2a73ce2d --- /dev/null +++ b/account_netting/i18n/es_DO.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/account_netting/i18n/es_EC.po b/account_netting/i18n/es_EC.po new file mode 100644 index 00000000000..c472c5c0875 --- /dev/null +++ b/account_netting/i18n/es_EC.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/account_netting/i18n/es_ES.po b/account_netting/i18n/es_ES.po new file mode 100644 index 00000000000..28e9499227c --- /dev/null +++ b/account_netting/i18n/es_ES.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/es_MX.po b/account_netting/i18n/es_MX.po new file mode 100644 index 00000000000..ba236085203 --- /dev/null +++ b/account_netting/i18n/es_MX.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modificacion realizada" diff --git a/account_netting/i18n/es_PE.po b/account_netting/i18n/es_PE.po new file mode 100644 index 00000000000..e0c7e101d31 --- /dev/null +++ b/account_netting/i18n/es_PE.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima Modificación en" diff --git a/account_netting/i18n/es_PY.po b/account_netting/i18n/es_PY.po new file mode 100644 index 00000000000..5c399172204 --- /dev/null +++ b/account_netting/i18n/es_PY.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/es_VE.po b/account_netting/i18n/es_VE.po new file mode 100644 index 00000000000..8cb7ed93572 --- /dev/null +++ b/account_netting/i18n/es_VE.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Modificada por última vez" diff --git a/account_netting/i18n/et.po b/account_netting/i18n/et.po new file mode 100644 index 00000000000..9088f829f09 --- /dev/null +++ b/account_netting/i18n/et.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Viimati muudetud" diff --git a/account_netting/i18n/eu.po b/account_netting/i18n/eu.po new file mode 100644 index 00000000000..85fc1b2af80 --- /dev/null +++ b/account_netting/i18n/eu.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/fa.po b/account_netting/i18n/fa.po new file mode 100644 index 00000000000..f14bde3f2bd --- /dev/null +++ b/account_netting/i18n/fa.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "لغو" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "شناسه" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "تاریخ آخرین به‌روزرسانی" diff --git a/account_netting/i18n/fi.po b/account_netting/i18n/fi.po new file mode 100644 index 00000000000..d61399bdb75 --- /dev/null +++ b/account_netting/i18n/fi.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Peruuta" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Viimeksi muokattu" diff --git a/account_netting/i18n/fr.po b/account_netting/i18n/fr.po new file mode 100644 index 00000000000..dd23fa9c23a --- /dev/null +++ b/account_netting/i18n/fr.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2024-03-02 15:35+0000\n" +"Last-Translator: Alexis de Lattre \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" +"X-Generator: Weblate 4.17\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Compensation clients/fournisseurs" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Solde" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Type de solde" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "Société" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compenser" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "Devise" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "Écritures comptables à compenser" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" +"La ligne '%(line)s' a le compte '%(account)s' qui n'est ni un compte " +"fournisseur ni un compte client." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "La ligne '%s' n'a pas de partenaire." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "La ligne '%s' est déjà lettrée." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "La ligne '%s' n'est pas comptabilisée." + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" +"La fonction 'Compenser' est destinée à équilibrer des opérations sur des " +"comptes différents pour un même partenaire. Les écritures comptables " +"sélectionnées ont le même compte '%s', il est donc préférable d'utiliser la " +"fonction 'Lettrage'." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" +"Les écritures comptables sélectionnées ont des partenaires différents : %s. " +"Toutes les écritures comptables sélectionnées doivent avoir le même " +"partenaire." + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" +"Cette opération générera une pièce comptable dont les lignes sont la " +"contrepartie des comptes client/fournisseur sélectionnés, et les " +"réconciliera l'une avec l'autre, en laissant ce solde dans le partenaire." + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "À payer" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "À recevoir" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Assistant pour générer des écritures comptables de compensation" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "Vous devez sélectionner au moins deux écritures comptables." + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Toutes les écritures doivent avoir un compte payable ou recevable" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Aucune écriture ne doit être lettrée" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "Toutes les écritures doivent avoir le même partenaire." + +#~ msgid "Compensate entries" +#~ msgstr "Pièces de compensation" + +#~ msgid "Move Line" +#~ msgstr "Écriture" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "La fonctionalité 'Compenser' est prévue pour lettré des opérations dans " +#~ "des comptes différents pour le même partenaire.\n" +#~ "Si toutes les écritures appartiennent au même compte, veuillez utiliser " +#~ "la fonction Lettrage." + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Cette opération va générer des écritures comptables qui vont compenses " +#~ "les compte payables / recevables sélectionnés, et les lettrer afin " +#~ "d'aafcter le solde au partenaire." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Vous devez compenser au moins deux écritures." diff --git a/account_netting/i18n/fr_CA.po b/account_netting/i18n/fr_CA.po new file mode 100644 index 00000000000..b154657ff60 --- /dev/null +++ b/account_netting/i18n/fr_CA.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "Identifiant" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/fr_CH.po b/account_netting/i18n/fr_CH.po new file mode 100644 index 00000000000..acf77a7092b --- /dev/null +++ b/account_netting/i18n/fr_CH.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" diff --git a/account_netting/i18n/fr_FR.po b/account_netting/i18n/fr_FR.po new file mode 100644 index 00000000000..b44762dd120 --- /dev/null +++ b/account_netting/i18n/fr_FR.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/gl.po b/account_netting/i18n/gl.po new file mode 100644 index 00000000000..b5d63c4901c --- /dev/null +++ b/account_netting/i18n/gl.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación" diff --git a/account_netting/i18n/gl_ES.po b/account_netting/i18n/gl_ES.po new file mode 100644 index 00000000000..51c88067202 --- /dev/null +++ b/account_netting/i18n/gl_ES.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/gu.po b/account_netting/i18n/gu.po new file mode 100644 index 00000000000..75683697dd9 --- /dev/null +++ b/account_netting/i18n/gu.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"Language: gu\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "રદ કરો" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/he.po b/account_netting/i18n/he.po new file mode 100644 index 00000000000..dd00c9572b9 --- /dev/null +++ b/account_netting/i18n/he.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "בטל" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "מזהה" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "תאריך שינוי אחרון" diff --git a/account_netting/i18n/hi.po b/account_netting/i18n/hi.po new file mode 100644 index 00000000000..6baa0a5d41c --- /dev/null +++ b/account_netting/i18n/hi.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "रद्द" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/hr.po b/account_netting/i18n/hr.po new file mode 100644 index 00000000000..95bafd0b031 --- /dev/null +++ b/account_netting/i18n/hr.po @@ -0,0 +1,220 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2022-08-23 14:07+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Vrsta salda" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Odustani" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Kompenziraj" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Prikaži ime" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano dana" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "Za plaćanje" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "Za naplatu" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Čarobnjak za kreiranje temeljnice kompenzacije" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnja izmjena dana" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Sve stavke moraju imati dugovna ili potražna konta" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Sve stavke moraju biti otvorene" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Sve stavke moraju imati unešenog partnera, i partner mora biti isti na " +#~ "svim stavkama." + +#~ msgid "Compensate entries" +#~ msgstr "Kompenziraj stavke" + +#~ msgid "Move Line" +#~ msgstr "Stavka temeljnice" + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Ova operacija će kreirati protustavke za odabrana dugovna/potražna konta " +#~ "i zatvoriti ih međusobno, ostavivši saldo na partneru." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Trebali bi kompenzirati najmanje 2 stavke dnevnika." diff --git a/account_netting/i18n/hr_HR.po b/account_netting/i18n/hr_HR.po new file mode 100644 index 00000000000..a415871905a --- /dev/null +++ b/account_netting/i18n/hr_HR.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje modificirano" diff --git a/account_netting/i18n/hu.po b/account_netting/i18n/hu.po new file mode 100644 index 00000000000..747ce3134d7 --- /dev/null +++ b/account_netting/i18n/hu.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Mégsem" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Utolsó frissítés dátuma" diff --git a/account_netting/i18n/id.po b/account_netting/i18n/id.po new file mode 100644 index 00000000000..c36ed808434 --- /dev/null +++ b/account_netting/i18n/id.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Batalkan" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Terakhir Dimodifikasi pada" diff --git a/account_netting/i18n/it.po b/account_netting/i18n/it.po new file mode 100644 index 00000000000..b86d959b5ce --- /dev/null +++ b/account_netting/i18n/it.po @@ -0,0 +1,197 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2024-03-12 13:34+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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Compensazione AR/AP" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Tipo saldo" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "Azienda" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compensa" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Registro" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "Registrazioni contabili da compensare" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" +"La riga '%(line)s' ha il conto '%(account)s' che non è ne pagabile ne " +"esigibile." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "La riga '%s' non ha un partner." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "La riga '%s' è già riconciliata." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "La riga '%s' non è inserita." + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" +"La funzione \"Compensazione\" ha lo scopo di bilanciare le operazioni su " +"conti diversi per lo stesso partner. Le registrazioni contabili selezionate " +"hanno lo stesso conto '%s', quindi si dovrebbe utilizzare invece la funzione " +"'Riconcilia'." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" +"Le registrazioni contabili selezionate hanno partner diversi: %s. Tutte le " +"registrazioni contabili selezionate devono avere lo stesso partner." + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" +"Questa operazione genererà una registrazione contabile le cui righe sono " +"contropartita dei conti clienti/debiti selezionati, e si riconcilieranno tra " +"loro, lasciando questo saldo nel partner." + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "Da pagare" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "Da ricevere" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" +"Procedura guidata per la generazione movimenti contabili per la compensazione" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "Bisogna selezionare almeno due registrazioni contabili." + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modifica il" diff --git a/account_netting/i18n/ja.po b/account_netting/i18n/ja.po new file mode 100644 index 00000000000..4cda31ac439 --- /dev/null +++ b/account_netting/i18n/ja.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "キャンセル" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "作成日" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "最終更新日" diff --git a/account_netting/i18n/ko.po b/account_netting/i18n/ko.po new file mode 100644 index 00000000000..ff2073eeb49 --- /dev/null +++ b/account_netting/i18n/ko.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "취소" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "작성일" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "최근 수정" diff --git a/account_netting/i18n/lo.po b/account_netting/i18n/lo.po new file mode 100644 index 00000000000..39ee508b0eb --- /dev/null +++ b/account_netting/i18n/lo.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/lt.po b/account_netting/i18n/lt.po new file mode 100644 index 00000000000..7cf0ac1ea44 --- /dev/null +++ b/account_netting/i18n/lt.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Paskutinį kartą keista" diff --git a/account_netting/i18n/lt_LT.po b/account_netting/i18n/lt_LT.po new file mode 100644 index 00000000000..8d4a2f1e050 --- /dev/null +++ b/account_netting/i18n/lt_LT.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/lv.po b/account_netting/i18n/lv.po new file mode 100644 index 00000000000..faae22a61ad --- /dev/null +++ b/account_netting/i18n/lv.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\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 != 0 ? 1 : " +"2);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atcelt" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/mk.po b/account_netting/i18n/mk.po new file mode 100644 index 00000000000..138d42b1c76 --- /dev/null +++ b/account_netting/i18n/mk.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Откажи" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Последна промена на" diff --git a/account_netting/i18n/mn.po b/account_netting/i18n/mn.po new file mode 100644 index 00000000000..35fc1fbb448 --- /dev/null +++ b/account_netting/i18n/mn.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Цуцлах" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Сүүлийн засвар хийсэн огноо" diff --git a/account_netting/i18n/nb.po b/account_netting/i18n/nb.po new file mode 100644 index 00000000000..d4de15a133c --- /dev/null +++ b/account_netting/i18n/nb.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sist oppdatert " diff --git a/account_netting/i18n/nb_NO.po b/account_netting/i18n/nb_NO.po new file mode 100644 index 00000000000..cf7347adfd3 --- /dev/null +++ b/account_netting/i18n/nb_NO.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sist endret den" diff --git a/account_netting/i18n/nl.po b/account_netting/i18n/nl.po new file mode 100644 index 00000000000..c0d868ea623 --- /dev/null +++ b/account_netting/i18n/nl.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst bijgewerkt op" diff --git a/account_netting/i18n/nl_BE.po b/account_netting/i18n/nl_BE.po new file mode 100644 index 00000000000..9b74299e14e --- /dev/null +++ b/account_netting/i18n/nl_BE.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst Aangepast op" diff --git a/account_netting/i18n/pl.po b/account_netting/i18n/pl.po new file mode 100644 index 00000000000..0a6bd1810d6 --- /dev/null +++ b/account_netting/i18n/pl.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ostatnio modyfikowano" diff --git a/account_netting/i18n/pt.po b/account_netting/i18n/pt.po new file mode 100644 index 00000000000..c217843773e --- /dev/null +++ b/account_netting/i18n/pt.po @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Pedro Castro Silva , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-08 23:22+0000\n" +"PO-Revision-Date: 2019-08-14 18:44+0000\n" +"Last-Translator: Pedro Castro Silva \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" +"X-Generator: Weblate 3.7.1\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Encontro de Contas" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Tipo de Saldo" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nome a Exibir" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Diário" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última Actualização por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última Actualização em" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "A Pagar" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "A receber" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Assistente para gerar lançamentos de encontros de contas" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificação em" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Os itens de diário devem ter uma conta a receber ou a pagar" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Os itens de diário não podem estar reconciliados" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Os itens de diário devem ter um parceiro e este deve ser o mesmo para " +#~ "todos." + +#~ msgid "Compensate entries" +#~ msgstr "Compensar os itens de diário" + +#~ msgid "Move Line" +#~ msgstr "Linha de Movimento" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "A função 'Compensar' pretende balancear operações em contas diferentes " +#~ "para o mesmo parceiro.\n" +#~ "Neste caso todos os lançamentos selecionados pertencem à mesma conta.\n" +#~ "Por favor, use a função 'Reconciliar'." + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Esta operação gerará itens de diário que são contrapartida das contas a " +#~ "receber/a pagar selecionadas e realizará a reconciliação, deixando este " +#~ "saldo no parceiro." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Deve compensar pelos menos 2 itens de diário." diff --git a/account_netting/i18n/pt_BR.po b/account_netting/i18n/pt_BR.po new file mode 100644 index 00000000000..213951d2927 --- /dev/null +++ b/account_netting/i18n/pt_BR.po @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2019-07-09 01:43+0000\n" +"Last-Translator: Eduardo Aparicio \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" +"X-Generator: Weblate 3.7.1\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "Compensação à receber/pagar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Tipo de Saldo" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "Identificação" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Diário" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "A pagar" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "A receber" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Assistente para geração de transações compensatórias" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última atualização em" + +#, python-format +#~ msgid "All entries must have a receivable or payable account" +#~ msgstr "Todos os lançamentos devem ter uma conta à receber ou à pagar" + +#, python-format +#~ msgid "All entries mustn't been reconciled" +#~ msgstr "Nenhum lançamento pode estar reconciliado" + +#, python-format +#~ msgid "" +#~ "All entries should have a partner and the partner must be the same for " +#~ "all." +#~ msgstr "" +#~ "Todos os lançamentos devem ter um Parceiro, que deve ser o mesmo para " +#~ "todos." + +#~ msgid "Compensate entries" +#~ msgstr "Compensar lançamentos" + +#~ msgid "Move Line" +#~ msgstr "Lançamento" + +#, python-format +#~ msgid "" +#~ "The 'Compensate' function is intended to balance operations on different " +#~ "accounts for the same partner.\n" +#~ "In this case all selected entries belong to the same account.\n" +#~ " Please use the 'Reconcile' function." +#~ msgstr "" +#~ "A função 'Compensar' se destina a compensar operações em diferentes " +#~ "contas para o mesmo Parceiro.\n" +#~ "Neste caso, todos os lançamentos pertencem à mesma conta.\n" +#~ "Por favor, utilize a função 'Reconciliar'." + +#~ msgid "" +#~ "This operation will generate account entries that are counterpart of the " +#~ "receivable/payable accounts selected, and reconcile each other, letting " +#~ "this balance in the partner." +#~ msgstr "" +#~ "Esta operação criará lançamentos que são contrapartidas das contas à " +#~ "pagar/receber selecionadas, e se reconciliarão mutuamente, deixando este " +#~ "saldo no Parceiro." + +#, python-format +#~ msgid "You should compensate at least 2 journal entries." +#~ msgstr "Você deve compensar pelo menos 2 transações." diff --git a/account_netting/i18n/pt_PT.po b/account_netting/i18n/pt_PT.po new file mode 100644 index 00000000000..c84635a972b --- /dev/null +++ b/account_netting/i18n/pt_PT.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Modificado pela última vez em" diff --git a/account_netting/i18n/ro.po b/account_netting/i18n/ro.po new file mode 100644 index 00000000000..695df1b180f --- /dev/null +++ b/account_netting/i18n/ro.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima actualizare în" diff --git a/account_netting/i18n/ru.po b/account_netting/i18n/ru.po new file mode 100644 index 00000000000..d61882751d0 --- /dev/null +++ b/account_netting/i18n/ru.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Создан" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/sk.po b/account_netting/i18n/sk.po new file mode 100644 index 00000000000..fc1525cedb6 --- /dev/null +++ b/account_netting/i18n/sk.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Zrušiť" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Posledná modifikácia" diff --git a/account_netting/i18n/sl.po b/account_netting/i18n/sl.po new file mode 100644 index 00000000000..e3610cbede2 --- /dev/null +++ b/account_netting/i18n/sl.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnjič spremenjeno" diff --git a/account_netting/i18n/sr.po b/account_netting/i18n/sr.po new file mode 100644 index 00000000000..9d865bbe0f1 --- /dev/null +++ b/account_netting/i18n/sr.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/sr@latin.po b/account_netting/i18n/sr@latin.po new file mode 100644 index 00000000000..b939e9d2110 --- /dev/null +++ b/account_netting/i18n/sr@latin.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr%40latin/)\n" +"Language: sr@latin\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnja izmjena" diff --git a/account_netting/i18n/sv.po b/account_netting/i18n/sv.po new file mode 100644 index 00000000000..7508490e432 --- /dev/null +++ b/account_netting/i18n/sv.po @@ -0,0 +1,195 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2024-02-27 08:09+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "AR/AP netting" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "Balans" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "Balans typ" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "Bolag" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "Kompensera" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "Journalposter att kompensera" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" +"Rad \"%(line)s\" har konto \"%(account)s\" som varken är ett betalnings- " +"eller ett fordringskonto." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "Raden '%s' har ingen kontakt." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "Rad '%s' är redan avstämd." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "Rad '%s' är inte bokförd." + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "Kontakt" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" +"Funktionen 'Kompensera' är avsedd för att balansera transaktioner på olika " +"konton för samma partner. De valda journalposterna har samma konto '%s', så " +"du bör använda funktionen 'Avstäm' istället." + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" +"De valda journalposterna har olika kontakter: %s. Alla valda journalposter " +"måste ha samma kontakt." + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" +"Denna operation kommer att generera en journalpost vars rader är " +"motsvarigheter till de valda fordrings-/betalningskontona och stämma av " +"varandra, så att detta balanseras i kontakten." + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "Att betala" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "Att ta emot" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "Guide för att generera kontoflyttningar för nettning" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "Du bör välja minst 2 journalrader." + +#~ msgid "Last Modified on" +#~ msgstr "Senast redigerad" diff --git a/account_netting/i18n/th.po b/account_netting/i18n/th.po new file mode 100644 index 00000000000..a333573cc7c --- /dev/null +++ b/account_netting/i18n/th.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "รหัส" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ" diff --git a/account_netting/i18n/tr.po b/account_netting/i18n/tr.po new file mode 100644 index 00000000000..97423bd9e7b --- /dev/null +++ b/account_netting/i18n/tr.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Son değişiklik" diff --git a/account_netting/i18n/tr_TR.po b/account_netting/i18n/tr_TR.po new file mode 100644 index 00000000000..53f66e0d23e --- /dev/null +++ b/account_netting/i18n/tr_TR.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "İptal et" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "Kimlik" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "En son güncelleme tarihi" diff --git a/account_netting/i18n/uk.po b/account_netting/i18n/uk.po new file mode 100644 index 00000000000..6bb896c9faa --- /dev/null +++ b/account_netting/i18n/uk.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\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_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Скасувати" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Остання модифікація" diff --git a/account_netting/i18n/vi.po b/account_netting/i18n/vi.po new file mode 100644 index 00000000000..ccad0739830 --- /dev/null +++ b/account_netting/i18n/vi.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sửa lần cuối vào" diff --git a/account_netting/i18n/vi_VN.po b/account_netting/i18n/vi_VN.po new file mode 100644 index 00000000000..d868c3f4343 --- /dev/null +++ b/account_netting/i18n/vi_VN.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Hủy" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" diff --git a/account_netting/i18n/zh_CN.po b/account_netting/i18n/zh_CN.po new file mode 100644 index 00000000000..6492423d8ff --- /dev/null +++ b/account_netting/i18n/zh_CN.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "取消" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Last Modified on" diff --git a/account_netting/i18n/zh_TW.po b/account_netting/i18n/zh_TW.po new file mode 100644 index 00000000000..873dd8f0747 --- /dev/null +++ b/account_netting/i18n/zh_TW.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "刪除" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_id +msgid "Company" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__create_date +msgid "Created on" +msgstr "建立於" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__company_currency_id +msgid "Currency" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__id +msgid "ID" +msgstr "編號" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__move_line_ids +msgid "Journal Items to Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"Line '%(line)s' has account '%(account)s' which is not a payable nor a " +"receivable account." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' doesn't have a partner." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is already reconciled." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "Line '%s' is not posted." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting__partner_id +msgid "Partner" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner. The selected journal items have the same " +"account '%s', so you should use the 'Reconcile' function instead." +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "" +"The selected journal items have different partners: %s. All the selected " +"journal items must have the same partner." +msgstr "" + +#. module: account_netting +#: model_terms:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate a journal entry whose lines are counterpart of " +"the receivable/payable accounts selected, and reconcile each other, letting " +"this balance in the partner." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__pay +msgid "To pay" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields.selection,name:account_netting.selection__account_move_make_netting__balance_type__receive +msgid "To receive" +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "Wizard to generate account moves for netting" +msgstr "" + +#. module: account_netting +#. odoo-python +#: code:addons/account_netting/wizards/account_move_make_netting.py:0 +#, python-format +msgid "You should select at least 2 journal items." +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "最後修改:" diff --git a/account_netting/pyproject.toml b/account_netting/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/account_netting/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/account_netting/readme/CONTRIBUTORS.md b/account_netting/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..0200a1642d5 --- /dev/null +++ b/account_netting/readme/CONTRIBUTORS.md @@ -0,0 +1,5 @@ +- [Tecnativa](https://www.tecnativa.com): + - Pedro M. Baeza + - Vicent Cubells + - Víctor Martínez + - Marwan Behillil \ No newline at end of file diff --git a/account_netting/readme/DESCRIPTION.md b/account_netting/readme/DESCRIPTION.md new file mode 100644 index 00000000000..ddca6f0ceb4 --- /dev/null +++ b/account_netting/readme/DESCRIPTION.md @@ -0,0 +1,8 @@ +This module allows to compensate the balance of a receivable account +with the balance of a payable account for the same partner, creating a +journal item that reflects this operation. + +**WARNING**: This operation can be forbidden in your country by the +accounting regulations, so you should check current laws before using +it. For example, in Spain, this is not allowed at first instance, unless +you document well the operation from both parties. diff --git a/account_netting/readme/USAGE.md b/account_netting/readme/USAGE.md new file mode 100644 index 00000000000..e1e458dc8fe --- /dev/null +++ b/account_netting/readme/USAGE.md @@ -0,0 +1,13 @@ +From any account journal entries view: + +- Accounting/Journal Entries/Journal Items + +select all the lines that corresponds to both AR/AP operations from the +same partner. Click on *Action \> Compensate*. If the items don't +correspond to the same partner or they aren't AR/AP accounts, you will +get an error. + +On contrary, a dialog box will be presented with the result of the +operation and a selection of the journal to register the operation. When +you click on the *Compensate* button, a journal entry is created with +the corresponding counterparts of the AR/AP operations. diff --git a/account_netting/security/ir.model.access.csv b/account_netting/security/ir.model.access.csv new file mode 100644 index 00000000000..88d06ccdc19 --- /dev/null +++ b/account_netting/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_move_make_netting,Full access on account.move.make.netting to accountant grp,model_account_move_make_netting,account.group_account_user,1,1,1,1 +access_account_move_make_netting_manager,Full access on account.move.make.netting to accountant manager grp,model_account_move_make_netting,account.group_account_manager,1,1,1,1 diff --git a/account_netting/static/description/icon.png b/account_netting/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_netting/static/description/icon.png differ diff --git a/account_netting/static/description/index.html b/account_netting/static/description/index.html new file mode 100644 index 00000000000..b2ee891bb17 --- /dev/null +++ b/account_netting/static/description/index.html @@ -0,0 +1,451 @@ + + + + + +Account netting + + + +
+

Account netting

+ + +

Beta License: AGPL-3 OCA/account-financial-tools Translate me on Weblate Try me on Runboat

+

This module allows to compensate the balance of a receivable account +with the balance of a payable account for the same partner, creating a +journal item that reflects this operation.

+

WARNING: This operation can be forbidden in your country by the +accounting regulations, so you should check current laws before using +it. For example, in Spain, this is not allowed at first instance, unless +you document well the operation from both parties.

+

Table of contents

+ +
+

Usage

+

From any account journal entries view:

+
    +
  • Accounting/Journal Entries/Journal Items
  • +
+

select all the lines that corresponds to both AR/AP operations from the +same partner. Click on Action > Compensate. If the items don’t +correspond to the same partner or they aren’t AR/AP accounts, you will +get an error.

+

On contrary, a dialog box will be presented with the result of the +operation and a selection of the journal to register the operation. When +you click on the Compensate button, a journal entry is created with +the corresponding counterparts of the AR/AP operations.

+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+
    +
  • Tecnativa:
      +
    • Pedro M. Baeza
    • +
    • Vicent Cubells
    • +
    • Víctor Martínez
    • +
    • Marwan Behillil
    • +
    +
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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

+

This module is part of the OCA/account-financial-tools project on GitHub.

+

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

+
+
+
+ + diff --git a/account_netting/tests/__init__.py b/account_netting/tests/__init__.py new file mode 100644 index 00000000000..21baa0f882b --- /dev/null +++ b/account_netting/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import test_account_netting diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py new file mode 100644 index 00000000000..56fb43e11f0 --- /dev/null +++ b/account_netting/tests/test_account_netting.py @@ -0,0 +1,232 @@ +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Tecnativa - Vicent Cubells +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from datetime import datetime + +import odoo.tests.common as common +from odoo import Command +from odoo.exceptions import UserError +from odoo.tests import tagged + + +@tagged("post_install", "-at_install") +class TestAccountNetting(common.TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True)) + res_users_account_manager = cls.env.ref("account.group_account_manager") + partner_manager = cls.env.ref("base.group_partner_manager") + cls.env.user.write( + { + "groups_id": [ + Command.set([res_users_account_manager.id, partner_manager.id]) + ] + } + ) + cls.company = cls.env.ref("base.main_company") + # only adviser can create an account + cls.aa_model = cls.env["account.account"] + cls.account_receivable = cls._get_account(cls, "asset_receivable") + cls.account_payable = cls._get_account(cls, "liability_payable") + cls.account_revenue = cls._get_account(cls, "income") + cls.account_expense = cls._get_account(cls, "expense") + cls.partner_model = cls.env["res.partner"] + cls.partner1 = cls._create_partner(cls, "Supplier/Customer 1") + cls.partner2 = cls._create_partner(cls, "Supplier/Customer 2") + cls.miscellaneous_journal = cls.env["account.journal"].search( + [("type", "=", "general"), ("company_id", "=", cls.company.id)], limit=1 + ) + # We need a product with taxes at 0 so that the amounts are as expected. + cls.account_tax = cls.env["account.tax"].create( + { + "name": "0%", + "amount_type": "fixed", + "type_tax_use": "sale", + "amount": 0, + "company_id": cls.company.id, + } + ) + cls.product = cls.env["product.product"].create( + { + "name": "Product Test", + "list_price": 10, + "taxes_id": [Command.set([cls.account_tax.id])], + } + ) + out_invoice_partner1 = cls._create_move(cls, "out_invoice", cls.partner1, 100) + out_invoice_partner1.action_post() + cls.move_line_1 = out_invoice_partner1.line_ids.filtered( + lambda x: x.account_id == cls.account_receivable + ) + in_invoice_partner1 = cls._create_move(cls, "in_invoice", cls.partner1, 1200) + in_invoice_partner1.action_post() + cls.move_line_2 = in_invoice_partner1.line_ids.filtered( + lambda x: x.account_id == cls.account_payable + ) + cls.move_line_3 = in_invoice_partner1.line_ids.filtered( + lambda x: x.account_id == cls.account_expense + ) + in_invoice_partner2 = cls._create_move(cls, "in_invoice", cls.partner2, 200) + in_invoice_partner2.action_post() + cls.move_line_4 = in_invoice_partner2.line_ids.filtered( + lambda x: x.account_id == cls.account_payable + ) + in_refund_partner2 = cls._create_move(cls, "in_refund", cls.partner2, 200) + in_refund_partner2.action_post() + cls.move_line_5 = in_refund_partner2.line_ids.filtered( + lambda x: x.account_id == cls.account_payable + ) + in_refund_partner2 = cls._create_move(cls, "in_refund", cls.partner2, 200) + in_refund_partner2.action_post() + cls.move_line_6 = in_refund_partner2.line_ids.filtered( + lambda x: x.account_id == cls.account_payable + ) + + def _get_account(self, account_type): + return self.aa_model.search( + [ + ("account_type", "=", account_type), + ("company_ids", "in", self.company.id), + ], + limit=1, + ) + + def _create_partner(self, name): + return self.partner_model.create( + { + "name": name, + "property_account_receivable_id": self.account_receivable.id, + "property_account_payable_id": self.account_payable.id, + } + ) + + def _create_move(self, move_type, partner, price): + vals = { + "company_id": self.company.id, + "move_type": move_type, + "partner_id": partner.id, + "invoice_line_ids": [ + Command.create( + { + "product_id": self.product.id, + "price_unit": price, + } + ) + ], + } + if move_type in ("in_invoice", "in_refund"): + vals["invoice_date"] = datetime.now() + move = self.env["account.move"].create(vals) + return move + + def test_compensation(self): + # Test raise if 1 account.move.line selected + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_1.id] + ) + with self.assertRaises(UserError): + wizard = obj.create( + { + "move_line_ids": [Command.set([self.move_line_1.id])], + "journal_id": self.miscellaneous_journal.id, + } + ) + # Test raise if not all accounts are payable/receivable + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_1.id, self.move_line_3.id] + ) + with self.assertRaises(UserError): + wizard = obj.create( + { + "move_line_ids": [ + Command.set([self.move_line_1.id, self.move_line_3.id]) + ], + "journal_id": self.miscellaneous_journal.id, + } + ) + # Test raise if same account + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_4.id, self.move_line_5.id] + ) + with self.assertRaises(UserError): + wizard = obj.create( + { + "move_line_ids": [ + Command.set([self.move_line_4.id, self.move_line_5.id]) + ], + "journal_id": self.miscellaneous_journal.id, + } + ) + # Test raise if reconciled lines + moves = self.env["account.move.line"].browse( + [self.move_line_4.id, self.move_line_5.id] + ) + moves.reconcile() + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_4.id, self.move_line_5.id] + ) + with self.assertRaises(UserError): + wizard = obj.create( + { + "move_line_ids": [ + Command.set([self.move_line_4.id, self.move_line_5.id]) + ], + "journal_id": self.miscellaneous_journal.id, + } + ) + # Test raise if different partners + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_1.id, self.move_line_6.id] + ) + with self.assertRaises(UserError): + wizard = obj.create( + { + "move_line_ids": [ + Command.set([self.move_line_1.id, self.move_line_6.id]) + ], + "journal_id": self.miscellaneous_journal.id, + } + ) + obj = self.env["account.move.make.netting"].with_context( + active_ids=[self.move_line_1.id, self.move_line_2.id] + ) + wizard = obj.create( + { + "move_line_ids": [ + Command.set([self.move_line_1.id, self.move_line_2.id]) + ], + "journal_id": self.miscellaneous_journal.id, + } + ) + self.assertEqual(wizard.partner_id, self.partner1) + self.assertEqual(wizard.company_id, self.company) + res = wizard.button_compensate() + move = self.env["account.move"].browse(res["res_id"]) + self.assertEqual( + len(move.line_ids), 2, "AR/AP netting move has an incorrect line number" + ) + move_line_receivable = move.line_ids.filtered( + lambda x: x.account_id == self.account_receivable + ) + self.assertEqual( + move_line_receivable.credit, + 100, + "Incorrect credit amount for receivable move line", + ) + self.assertTrue( + move_line_receivable.reconciled and move_line_receivable.full_reconcile_id, + "Receivable move line should be totally reconciled", + ) + move_line_payable = move.line_ids.filtered( + lambda x: x.account_id == self.account_payable + ) + self.assertEqual( + move_line_payable.debit, 100, "Incorrect debit amount for payable move line" + ) + self.assertTrue( + move_line_payable.reconciled and not move_line_payable.full_reconcile_id, + "Receivable move line should be partially reconciled", + ) diff --git a/account_netting/wizards/__init__.py b/account_netting/wizards/__init__.py new file mode 100644 index 00000000000..1a610d97f9d --- /dev/null +++ b/account_netting/wizards/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import account_move_make_netting diff --git a/account_netting/wizards/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py new file mode 100644 index 00000000000..fae543c9c40 --- /dev/null +++ b/account_netting/wizards/account_move_make_netting.py @@ -0,0 +1,184 @@ +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Tecnativa - Vicent Cubells +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from odoo import Command, _, api, fields, models +from odoo.exceptions import UserError + + +class AccountMoveMakeNetting(models.TransientModel): + _name = "account.move.make.netting" + _description = "Wizard to generate account moves for netting" + _check_company_auto = True + + company_id = fields.Many2one("res.company", required=True) + journal_id = fields.Many2one( + comodel_name="account.journal", + required=True, + domain="[('type', '=', 'general'), ('company_id', '=', company_id)]", + check_company=True, + ) + move_line_ids = fields.Many2many( + comodel_name="account.move.line", + check_company=True, + string="Journal Items to Compensate", + ) + partner_id = fields.Many2one("res.partner", readonly=True) + company_currency_id = fields.Many2one(related="company_id.currency_id") + balance = fields.Monetary(readonly=True, currency_field="company_currency_id") + balance_type = fields.Selection( + selection=[("pay", "To pay"), ("receive", "To receive")], + readonly=True, + ) + ref = fields.Char(string="Reference") + date = fields.Date(required=True) + + @api.model + def default_get(self, fields_list): + if len(self.env.context.get("active_ids", [])) < 2: + raise UserError(_("You should select at least 2 journal items.")) + move_lines = self.env["account.move.line"].browse( + self.env.context["active_ids"] + ) + partners = self.env["res.partner"] + for line in move_lines: + if line.parent_state != "posted": + raise UserError(_("Line '%s' is not posted.") % line.display_name) + if line.account_id.account_type not in ( + "liability_payable", + "asset_receivable", + ): + raise UserError( + _( + "Line '%(line)s' has account '%(account)s' which is not " + "a payable nor a receivable account." + ) + % { + "line": line.display_name, + "account": line.account_id.display_name, + } + ) + if line.reconciled: + raise UserError( + _("Line '%s' is already reconciled.") % line.display_name + ) + if not line.partner_id: + raise UserError( + _("Line '%s' doesn't have a partner.") % line.display_name + ) + partners |= line.partner_id + + if len(move_lines.account_id) == 1: + raise UserError( + _( + "The 'Compensate' function is intended to balance " + "operations on different accounts for the same partner. " + "The selected journal items have the same " + "account '%s', so you should use the 'Reconcile' function instead." + ) + % move_lines.account_id.display_name + ) + if len(partners) != 1: + raise UserError( + _( + "The selected journal items have different partners: %s. " + "All the selected journal items must have the same partner." + ) + % ", ".join([p.display_name for p in partners]) + ) + res = super().default_get(fields_list) + company = self.env.company + ccur = company.currency_id + debit_move_lines_debit = move_lines.filtered("debit") + credit_move_lines_debit = move_lines.filtered("credit") + balance = ccur.round( + abs(sum(debit_move_lines_debit.mapped("amount_residual"))) + - abs(sum(credit_move_lines_debit.mapped("amount_residual"))) + ) + res.update( + { + "balance": abs(balance), + "balance_type": "pay" + if ccur.compare_amounts(balance, 0) < 0 + else "receive", + "company_id": company.id, + "move_line_ids": move_lines.ids, + "partner_id": partners.id, + "date": fields.Date.context_today(self), + "ref": _("AR/AP netting"), + } + ) + return res + + def _prepare_account_move(self): + # Group amounts by account + account_groups = self.env["account.move.line"]._read_group( + [("id", "in", self.move_line_ids.ids)], + groupby=["account_id"], + aggregates=["amount_residual:sum"], + ) + debtors = [] + creditors = [] + total_debtors = 0.0 + total_creditors = 0.0 + ccur = self.company_id.currency_id + for account, balance in account_groups: + group_vals = { + "account_id": account.id, + "balance": abs(balance), + } + if ccur.compare_amounts(balance, 0) > 0: + debtors.append(group_vals) + total_debtors += balance + else: + creditors.append(group_vals) + total_creditors += abs(balance) + # Compute move lines + netting_amount = min(total_creditors, total_debtors) + field_map = {1: "debit", 0: "credit"} + move_lines = [] + for i, group in enumerate([debtors, creditors]): + available_amount = netting_amount + for account_group in group: + move_line_vals = { + field_map[i]: min(available_amount, account_group["balance"]), + "partner_id": self.partner_id.id, + "account_id": account_group["account_id"], + } + move_lines.append(Command.create(move_line_vals)) + available_amount -= account_group["balance"] + if ccur.compare_amounts(available_amount, 0) <= 0: + break + vals = { + "date": self.date, + "ref": self.ref, + "journal_id": self.journal_id.id, + "company_id": self.company_id.id, + "line_ids": move_lines, + } + return vals + + def button_compensate(self): + self.ensure_one() + # Create account move + move = self.env["account.move"].create(self._prepare_account_move()) + move.action_post() + # Make reconciliation + for move_line in move.line_ids: + to_reconcile = move_line + self.move_line_ids.filtered( + lambda x, move_line=move_line: x.account_id == move_line.account_id + ) + to_reconcile.reconcile() + # Open created move + action = self.env["ir.actions.actions"]._for_xml_id( + "account.action_move_journal_line" + ) + action.update( + { + "view_mode": "form", + "views": False, + "view_id": False, + "res_id": move.id, + } + ) + return action diff --git a/account_netting/wizards/account_move_make_netting_view.xml b/account_netting/wizards/account_move_make_netting_view.xml new file mode 100644 index 00000000000..9ba54ab7d12 --- /dev/null +++ b/account_netting/wizards/account_move_make_netting_view.xml @@ -0,0 +1,42 @@ + + + + Compensate + account.move.make.netting + form + new + + list + + + + Compensate entries + account.move.make.netting + +
+

This operation will generate a journal entry whose lines are counterpart of the receivable/payable accounts selected, and reconcile each other, letting this balance in the partner.

+ + + + + + + + + + + +
+
+
+