mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Merge pull request #786 from akretion/12-mig-netting
[12.0] Migrate account_netting to v12
This commit is contained in:
75
account_netting/README.rst
Normal file
75
account_netting/README.rst
Normal file
@@ -0,0 +1,75 @@
|
||||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
||||
:target: https://www.gnu.org/licenses/agpl
|
||||
:alt: License: AGPL-3
|
||||
|
||||
=============
|
||||
AR/AP netting
|
||||
=============
|
||||
|
||||
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.
|
||||
|
||||
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 "More > 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.
|
||||
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/92/11.0
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* We can add the possibility to pay the netting result amount directly from
|
||||
the wizard.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues
|
||||
<https://github.com/OCA/account-financial-tools/issues>`_. In case of trouble,
|
||||
please check there if your issue has already been reported. If you spotted it
|
||||
first, help us smash it by providing detailed and welcomed feedback.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Vicent Cubells <vicent.cubells@serviciosbaeza.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit https://odoo-community.org.
|
||||
4
account_netting/__init__.py
Normal file
4
account_netting/__init__.py
Normal file
@@ -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
|
||||
21
account_netting/__manifest__.py
Normal file
21
account_netting/__manifest__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 2015 Pedro M. Baeza
|
||||
# Copyright 2017 Vicent Cubells - Tecnativa <vicent.cubells@tecnativa.com>
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
{
|
||||
'name': 'Account netting',
|
||||
'version': '12.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': [
|
||||
'wizards/account_move_make_netting_view.xml',
|
||||
],
|
||||
'installable': True,
|
||||
}
|
||||
149
account_netting/i18n/account_netting.pot
Normal file
149
account_netting/i18n/account_netting.pot
Normal file
@@ -0,0 +1,149 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid "All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
|
||||
159
account_netting/i18n/am.po
Normal file
159
account_netting/i18n/am.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/ar.po
Normal file
160
account_netting/i18n/ar.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/bg.po
Normal file
159
account_netting/i18n/bg.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отмяна"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/bs.po
Normal file
160
account_netting/i18n/bs.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/ca.po
Normal file
159
account_netting/i18n/ca.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera modificació el"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/ca_ES.po
Normal file
160
account_netting/i18n/ca_ES.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/cs.po
Normal file
159
account_netting/i18n/cs.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/da.po
Normal file
159
account_netting/i18n/da.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
168
account_netting/i18n/de.po
Normal file
168
account_netting/i18n/de.po
Normal file
@@ -0,0 +1,168 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <rs@techno-flex.de>\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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr "Kred/Deb-Verrechnung"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr "Alle Posten müssen ein Kreditoren- oder Debitorenkonto aufweisen"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr "Kein Posten darf ausgeglichen sein"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, 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."
|
||||
|
||||
#. 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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr "Kompensieren"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
msgstr "Posten 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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr "Buchung"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr "Wählen Sie das Journal zur Aufnahme der Posten"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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'."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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:"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr "Zu zahlen"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr "Zu erhalten"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr "Sie müssen mindestens 2 Journalposten kompensieren."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr "account.move.make.netting"
|
||||
160
account_netting/i18n/el_GR.po
Normal file
160
account_netting/i18n/el_GR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Άκυρο"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/en_AU.po
Normal file
160
account_netting/i18n/en_AU.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/en_GB.po
Normal file
160
account_netting/i18n/en_GB.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
169
account_netting/i18n/es.po
Normal file
169
account_netting/i18n/es.po
Normal file
@@ -0,0 +1,169 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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-09-25 16:44+0000\n"
|
||||
"Last-Translator: Jimmy Ramos <jimmybanegas93@gmail.com>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1.1\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr "Compensación a cobrar/a pagar"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, 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"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr "Ningún apunte debe estar conciliado"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, 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."
|
||||
|
||||
#. 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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr "Compensar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
msgstr "Compensar apuntes"
|
||||
|
||||
#. 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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr "Apuntes"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr "Seleccione el diario en el que se guardarán los apuntes"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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'."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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:"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr "A pagar"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr "A cobrar"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr "Debe compensar al menos 2 apuntes."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr "cuenta.asiento.hacer.neteo"
|
||||
160
account_netting/i18n/es_AR.po
Normal file
160
account_netting/i18n/es_AR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\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"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_CL.po
Normal file
160
account_netting/i18n/es_CL.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_CO.po
Normal file
160
account_netting/i18n/es_CO.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_CR.po
Normal file
160
account_netting/i18n/es_CR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_DO.po
Normal file
160
account_netting/i18n/es_DO.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_EC.po
Normal file
160
account_netting/i18n/es_EC.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_ES.po
Normal file
160
account_netting/i18n/es_ES.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_MX.po
Normal file
160
account_netting/i18n/es_MX.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_PE.po
Normal file
160
account_netting/i18n/es_PE.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_PY.po
Normal file
160
account_netting/i18n/es_PY.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/es_VE.po
Normal file
160
account_netting/i18n/es_VE.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/et.po
Normal file
159
account_netting/i18n/et.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Loobu"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/eu.po
Normal file
159
account_netting/i18n/eu.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/fa.po
Normal file
159
account_netting/i18n/fa.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/fi.po
Normal file
159
account_netting/i18n/fi.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/fr.po
Normal file
159
account_netting/i18n/fr.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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 "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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière Modification le"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/fr_CA.po
Normal file
160
account_netting/i18n/fr_CA.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/fr_CH.po
Normal file
160
account_netting/i18n/fr_CH.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/fr_FR.po
Normal file
160
account_netting/i18n/fr_FR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/gl.po
Normal file
159
account_netting/i18n/gl.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/gl_ES.po
Normal file
160
account_netting/i18n/gl_ES.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/gu.po
Normal file
159
account_netting/i18n/gu.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "રદ કરો"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/he.po
Normal file
159
account_netting/i18n/he.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/hi.po
Normal file
159
account_netting/i18n/hi.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/hr.po
Normal file
160
account_netting/i18n/hr.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena dana"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
161
account_netting/i18n/hr_HR.po
Normal file
161
account_netting/i18n/hr_HR.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/hu.po
Normal file
159
account_netting/i18n/hu.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Mégsem"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/id.po
Normal file
159
account_netting/i18n/id.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Batalkan"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/it.po
Normal file
159
account_netting/i18n/it.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\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"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
msgstr ""
|
||||
|
||||
#. 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_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome da visualizzare"
|
||||
|
||||
#. 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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/ja.po
Normal file
159
account_netting/i18n/ja.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/ko.po
Normal file
159
account_netting/i18n/ko.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/lo.po
Normal file
159
account_netting/i18n/lo.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "ຍົກເລີອກ"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/lt.po
Normal file
160
account_netting/i18n/lt.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
161
account_netting/i18n/lt_LT.po
Normal file
161
account_netting/i18n/lt_LT.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/lv.po
Normal file
160
account_netting/i18n/lv.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/mk.po
Normal file
159
account_netting/i18n/mk.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/mn.po
Normal file
159
account_netting/i18n/mn.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Цуцлах"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/nb.po
Normal file
160
account_netting/i18n/nb.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/nb_NO.po
Normal file
160
account_netting/i18n/nb_NO.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nb_NO/)\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/nl.po
Normal file
159
account_netting/i18n/nl.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/nl_BE.po
Normal file
160
account_netting/i18n/nl_BE.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
161
account_netting/i18n/pl.po
Normal file
161
account_netting/i18n/pl.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
171
account_netting/i18n/pt.po
Normal file
171
account_netting/i18n/pt.po
Normal file
@@ -0,0 +1,171 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Castro Silva <pedrocs@exo.pt>, 2017
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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: 2017-12-08 23:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr "Encontro de Contas"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, 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"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr "Os itens de diário não podem estar reconciliados"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, 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."
|
||||
|
||||
#. 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
|
||||
#, fuzzy
|
||||
msgid "Balance Type"
|
||||
msgstr "Tipo de Saldo"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr "Compensar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
msgstr "Compensar os itens de diário"
|
||||
|
||||
#. 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_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
|
||||
#, fuzzy
|
||||
msgid "Journal"
|
||||
msgstr "Id do Diário"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
#, fuzzy
|
||||
msgid "Move Line"
|
||||
msgstr "Ids. da linha de movimento"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr "Selecione o Diário onde guardar os lançamentos"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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'."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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:"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr "A Pagar"
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr "A receber"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr "Deve compensar pelos menos 2 itens de diário."
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr "account.move.make.netting"
|
||||
160
account_netting/i18n/pt_BR.po
Normal file
160
account_netting/i18n/pt_BR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/pt_PT.po
Normal file
160
account_netting/i18n/pt_PT.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado pela última vez em"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/ro.po
Normal file
160
account_netting/i18n/ro.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anuleaza"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
161
account_netting/i18n/ru.po
Normal file
161
account_netting/i18n/ru.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отменена"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/sk.po
Normal file
159
account_netting/i18n/sk.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/sl.po
Normal file
160
account_netting/i18n/sl.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Preklic"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/sr.po
Normal file
160
account_netting/i18n/sr.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
161
account_netting/i18n/sr@latin.po
Normal file
161
account_netting/i18n/sr@latin.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/sv.po
Normal file
159
account_netting/i18n/sv.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\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"
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
msgstr ""
|
||||
|
||||
#. 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_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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/th.po
Normal file
159
account_netting/i18n/th.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/tr.po
Normal file
159
account_netting/i18n/tr.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/tr_TR.po
Normal file
160
account_netting/i18n/tr_TR.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "İptal et"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/uk.po
Normal file
160
account_netting/i18n/uk.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
159
account_netting/i18n/vi.po
Normal file
159
account_netting/i18n/vi.po
Normal file
@@ -0,0 +1,159 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy bỏ"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/vi_VN.po
Normal file
160
account_netting/i18n/vi_VN.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/zh_CN.po
Normal file
160
account_netting/i18n/zh_CN.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
160
account_netting/i18n/zh_TW.po
Normal file
160
account_netting/i18n/zh_TW.po
Normal file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_netting
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:67
|
||||
#, python-format
|
||||
msgid "AR/AP netting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:40
|
||||
#, python-format
|
||||
msgid "All entries must have a receivable or payable account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:43
|
||||
#, python-format
|
||||
msgid "All entries mustn't been reconciled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:52
|
||||
#, python-format
|
||||
msgid ""
|
||||
"All entries should have a partner and the partner must be the same for all."
|
||||
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:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Cancel"
|
||||
msgstr "刪除"
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Compensate entries"
|
||||
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_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___last_update
|
||||
msgid "Last Modified on"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids
|
||||
msgid "Move Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
msgid "Select the journal where storing the journal entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:46
|
||||
#, 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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form
|
||||
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 ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: selection:account.move.make.netting,balance_type:0
|
||||
msgid "To receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: code:addons/account_netting/wizards/account_move_make_netting.py:34
|
||||
#, python-format
|
||||
msgid "You should compensate at least 2 journal entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_netting
|
||||
#: model:ir.model,name:account_netting.model_account_move_make_netting
|
||||
msgid "account.move.make.netting"
|
||||
msgstr ""
|
||||
2
account_netting/readme/CONTRIBUTORS.rst
Normal file
2
account_netting/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||
* Vicent Cubells <vicent.cubells@serviciosbaeza.com>
|
||||
8
account_netting/readme/DESCRIPTION.rst
Normal file
8
account_netting/readme/DESCRIPTION.rst
Normal file
@@ -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.
|
||||
12
account_netting/readme/USAGE.rst
Normal file
12
account_netting/readme/USAGE.rst
Normal file
@@ -0,0 +1,12 @@
|
||||
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.
|
||||
BIN
account_netting/static/description/icon.png
Normal file
BIN
account_netting/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
4
account_netting/tests/__init__.py
Normal file
4
account_netting/tests/__init__.py
Normal file
@@ -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
|
||||
217
account_netting/tests/test_account_netting.py
Normal file
217
account_netting/tests/test_account_netting.py
Normal file
@@ -0,0 +1,217 @@
|
||||
# Copyright 2015 Pedro M. Baeza
|
||||
# Copyright 2017 Tecnativa - Vicent Cubells
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
import odoo.tests.common as common
|
||||
|
||||
|
||||
class TestAccountNetting(common.SavepointCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestAccountNetting, cls).setUpClass()
|
||||
cls.partner = cls.env['res.partner'].create({
|
||||
'supplier': True,
|
||||
'customer': True,
|
||||
'name': "Supplier/Customer",
|
||||
})
|
||||
cls.partner1 = cls.env['res.partner'].create({
|
||||
'supplier': True,
|
||||
'customer': True,
|
||||
'name': "Supplier/Customer 1",
|
||||
})
|
||||
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': [
|
||||
(6, 0, [res_users_account_manager.id, partner_manager.id])
|
||||
],
|
||||
})
|
||||
# only adviser can create an account
|
||||
cls.account_receivable = cls.env['account.account'].create({
|
||||
'code': 'cust_acc',
|
||||
'name': 'customer account',
|
||||
'user_type_id': cls.env.ref(
|
||||
'account.data_account_type_receivable').id,
|
||||
'reconcile': True,
|
||||
})
|
||||
cls.account_payable = cls.env['account.account'].create({
|
||||
'code': 'supp_acc',
|
||||
'name': 'supplier account',
|
||||
'user_type_id': cls.env.ref(
|
||||
'account.data_account_type_payable').id,
|
||||
'reconcile': True,
|
||||
})
|
||||
cls.account_revenue = cls.env['account.account'].search([
|
||||
('user_type_id', '=', cls.env.ref(
|
||||
'account.data_account_type_revenue').id)
|
||||
], limit=1)
|
||||
cls.account_expense = cls.env['account.account'].search([
|
||||
('user_type_id', '=', cls.env.ref(
|
||||
'account.data_account_type_expenses').id)
|
||||
], limit=1)
|
||||
cls.journal = cls.env['account.journal'].create({
|
||||
'name': 'Test sale journal',
|
||||
'type': 'sale',
|
||||
'code': 'TEST',
|
||||
})
|
||||
cls.expenses_journal = cls.env['account.journal'].create({
|
||||
'name': 'Test expense journal',
|
||||
'type': 'purchase',
|
||||
'code': 'EXP',
|
||||
})
|
||||
cls.miscellaneous_journal = cls.env['account.journal'].create({
|
||||
'name': 'Miscellaneus journal',
|
||||
'type': 'general',
|
||||
'code': 'OTHER',
|
||||
})
|
||||
cls.customer_invoice = cls.env['account.invoice'].create({
|
||||
'journal_id': cls.journal.id,
|
||||
'type': 'out_invoice',
|
||||
'partner_id': cls.partner.id,
|
||||
'account_id': cls.account_receivable.id,
|
||||
'invoice_line_ids': [(0, 0, {
|
||||
'name': 'Test',
|
||||
'price_unit': 100.0,
|
||||
'account_id': cls.account_revenue.id,
|
||||
})],
|
||||
})
|
||||
cls.customer_invoice.action_invoice_open()
|
||||
customer_move = cls.customer_invoice.move_id
|
||||
cls.move_line_1 = customer_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_receivable)
|
||||
cls.supplier_invoice = cls.env['account.invoice'].create({
|
||||
'journal_id': cls.expenses_journal.id,
|
||||
'type': 'in_invoice',
|
||||
'partner_id': cls.partner.id,
|
||||
'account_id': cls.account_payable.id,
|
||||
'invoice_line_ids': [(0, 0, {
|
||||
'name': 'Test',
|
||||
'price_unit': 1200.0,
|
||||
'account_id': cls.account_expense.id,
|
||||
})],
|
||||
})
|
||||
cls.supplier_invoice.action_invoice_open()
|
||||
supplier_move = cls.supplier_invoice.move_id
|
||||
cls.move_line_2 = supplier_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_payable)
|
||||
cls.move_line_3 = supplier_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_expense)
|
||||
cls.supplier_invoice = cls.env['account.invoice'].create({
|
||||
'journal_id': cls.expenses_journal.id,
|
||||
'type': 'in_invoice',
|
||||
'partner_id': cls.partner1.id,
|
||||
'account_id': cls.account_payable.id,
|
||||
'invoice_line_ids': [(0, 0, {
|
||||
'name': 'Test',
|
||||
'price_unit': 200.0,
|
||||
'account_id': cls.account_expense.id,
|
||||
})],
|
||||
})
|
||||
cls.supplier_invoice.action_invoice_open()
|
||||
supplier_move = cls.supplier_invoice.move_id
|
||||
cls.move_line_4 = supplier_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_payable)
|
||||
cls.supplier_invoice = cls.env['account.invoice'].create({
|
||||
'journal_id': cls.expenses_journal.id,
|
||||
'type': 'in_refund',
|
||||
'partner_id': cls.partner1.id,
|
||||
'account_id': cls.account_payable.id,
|
||||
'invoice_line_ids': [(0, 0, {
|
||||
'name': 'Test',
|
||||
'price_unit': 200.0,
|
||||
'account_id': cls.account_expense.id,
|
||||
})],
|
||||
})
|
||||
cls.supplier_invoice.action_invoice_open()
|
||||
supplier_move = cls.supplier_invoice.move_id
|
||||
cls.move_line_5 = supplier_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_payable)
|
||||
cls.supplier_invoice = cls.env['account.invoice'].create({
|
||||
'journal_id': cls.expenses_journal.id,
|
||||
'type': 'in_refund',
|
||||
'partner_id': cls.partner1.id,
|
||||
'account_id': cls.account_payable.id,
|
||||
'invoice_line_ids': [(0, 0, {
|
||||
'name': 'Test',
|
||||
'price_unit': 200.0,
|
||||
'account_id': cls.account_expense.id,
|
||||
})],
|
||||
})
|
||||
cls.supplier_invoice.action_invoice_open()
|
||||
supplier_move = cls.supplier_invoice.move_id
|
||||
cls.move_line_6 = supplier_move.line_ids.filtered(
|
||||
lambda x: x.account_id == cls.account_payable)
|
||||
|
||||
def test_compensation(self):
|
||||
# Test exception line 33 from account_move_make_netting
|
||||
obj = self.env['account.move.make.netting'].with_context(
|
||||
active_ids=[self.move_line_1.id])
|
||||
with self.assertRaises(Exception):
|
||||
wizard = obj.create(
|
||||
{'move_line_ids': [(6, 0, [self.move_line_1.id])],
|
||||
'journal_id': self.miscellaneous_journal.id})
|
||||
# Test exception line 39 from account_move_make_netting
|
||||
obj = self.env['account.move.make.netting'].with_context(
|
||||
active_ids=[self.move_line_1.id, self.move_line_3.id])
|
||||
with self.assertRaises(Exception):
|
||||
wizard = obj.create(
|
||||
{'move_line_ids': [(6, 0, [self.move_line_1.id,
|
||||
self.move_line_3.id])],
|
||||
'journal_id': self.miscellaneous_journal.id})
|
||||
# Test exception line 45 from account_move_make_netting
|
||||
obj = self.env['account.move.make.netting'].with_context(
|
||||
active_ids=[self.move_line_4.id, self.move_line_5.id])
|
||||
with self.assertRaises(Exception):
|
||||
wizard = obj.create(
|
||||
{'move_line_ids': [(6, 0, [self.move_line_4.id,
|
||||
self.move_line_5.id])],
|
||||
'journal_id': self.miscellaneous_journal.id})
|
||||
# Test exception line 42 from account_move_make_netting
|
||||
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(Exception):
|
||||
wizard = obj.create(
|
||||
{'move_line_ids': [(6, 0, [self.move_line_4.id,
|
||||
self.move_line_5.id])],
|
||||
'journal_id': self.miscellaneous_journal.id})
|
||||
# Test exception line 52 from account_move_make_netting
|
||||
obj = self.env['account.move.make.netting'].with_context(
|
||||
active_ids=[self.move_line_1.id, self.move_line_6.id])
|
||||
with self.assertRaises(Exception):
|
||||
wizard = obj.create(
|
||||
{'move_line_ids': [(6, 0, [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': [(6, 0, [self.move_line_1.id,
|
||||
self.move_line_2.id])],
|
||||
'journal_id': self.miscellaneous_journal.id})
|
||||
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')
|
||||
4
account_netting/wizards/__init__.py
Normal file
4
account_netting/wizards/__init__.py
Normal file
@@ -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
|
||||
128
account_netting/wizards/account_move_make_netting.py
Normal file
128
account_netting/wizards/account_move_make_netting.py
Normal file
@@ -0,0 +1,128 @@
|
||||
# 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 _, api, exceptions, fields, models
|
||||
|
||||
|
||||
class AccountMoveMakeNetting(models.TransientModel):
|
||||
_name = "account.move.make.netting"
|
||||
_description = 'Wizard to generate account moves for netting'
|
||||
|
||||
journal_id = fields.Many2one(
|
||||
comodel_name="account.journal",
|
||||
required=True,
|
||||
domain="[('type', '=', 'general')]",
|
||||
)
|
||||
move_line_ids = fields.Many2many(
|
||||
comodel_name="account.move.line",
|
||||
)
|
||||
balance = fields.Float(
|
||||
readonly=True,
|
||||
)
|
||||
balance_type = fields.Selection(
|
||||
selection=[
|
||||
('pay', 'To pay'),
|
||||
('receive', 'To receive'),
|
||||
],
|
||||
readonly=True,
|
||||
)
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields_list):
|
||||
if len(self.env.context.get('active_ids', [])) < 2:
|
||||
raise exceptions.ValidationError(
|
||||
_("You should compensate at least 2 journal entries."))
|
||||
move_lines = self.env['account.move.line'].browse(
|
||||
self.env.context['active_ids'])
|
||||
if (any(x not in ('payable', 'receivable') for
|
||||
x in move_lines.mapped('account_id.user_type_id.type'))):
|
||||
raise exceptions.ValidationError(
|
||||
_("All entries must have a receivable or payable account"))
|
||||
if any(move_lines.mapped('reconciled')):
|
||||
raise exceptions.ValidationError(
|
||||
_("All entries mustn't been reconciled"))
|
||||
if len(move_lines.mapped('account_id')) == 1:
|
||||
raise exceptions.ValidationError(
|
||||
_("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."))
|
||||
if len(move_lines.mapped('partner_id')) != 1:
|
||||
raise exceptions.ValidationError(
|
||||
_("All entries should have a partner and the partner must "
|
||||
"be the same for all."))
|
||||
res = super(AccountMoveMakeNetting, self).default_get(fields_list)
|
||||
res['move_line_ids'] = [(6, 0, move_lines.ids)]
|
||||
debit_move_lines_debit = move_lines.filtered('debit')
|
||||
credit_move_lines_debit = move_lines.filtered('credit')
|
||||
balance = (abs(sum(debit_move_lines_debit.mapped('amount_residual'))) -
|
||||
abs(sum(credit_move_lines_debit.mapped('amount_residual'))))
|
||||
res['balance'] = abs(balance)
|
||||
res['balance_type'] = 'pay' if balance < 0 else 'receive'
|
||||
return res
|
||||
|
||||
def button_compensate(self):
|
||||
self.ensure_one()
|
||||
# Create account move
|
||||
move = self.env['account.move'].create({
|
||||
'ref': _('AR/AP netting'),
|
||||
'journal_id': self.journal_id.id,
|
||||
})
|
||||
# Group amounts by account
|
||||
account_groups = self.move_line_ids.read_group(
|
||||
[('id', 'in', self.move_line_ids.ids)],
|
||||
['account_id', 'amount_residual'],
|
||||
['account_id'],
|
||||
)
|
||||
debtors = []
|
||||
creditors = []
|
||||
total_debtors = 0
|
||||
total_creditors = 0
|
||||
for account_group in account_groups:
|
||||
balance = account_group['amount_residual']
|
||||
group_vals = {
|
||||
'account_id': account_group['account_id'][0],
|
||||
'balance': abs(balance),
|
||||
}
|
||||
if balance > 0:
|
||||
debtors.append(group_vals)
|
||||
total_debtors += balance
|
||||
else:
|
||||
creditors.append(group_vals)
|
||||
total_creditors += abs(balance)
|
||||
# Create 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:
|
||||
if account_group['balance'] > available_amount:
|
||||
amount = available_amount
|
||||
else:
|
||||
amount = account_group['balance']
|
||||
move_line_vals = {
|
||||
field_map[i]: amount,
|
||||
'partner_id': self.move_line_ids[0].partner_id.id,
|
||||
'name': move.ref,
|
||||
'account_id': account_group['account_id'],
|
||||
}
|
||||
move_lines.append((0, 0, move_line_vals))
|
||||
available_amount -= account_group['balance']
|
||||
if available_amount <= 0:
|
||||
break
|
||||
if move_lines:
|
||||
move.write({'line_ids': move_lines})
|
||||
# Make reconciliation
|
||||
for move_line in move.line_ids:
|
||||
to_reconcile = move_line + self.move_line_ids.filtered(
|
||||
lambda x: x.account_id == move_line.account_id)
|
||||
to_reconcile.reconcile()
|
||||
# Open created move
|
||||
action = self.env.ref('account.action_move_journal_line').read()[0]
|
||||
action['view_mode'] = 'form'
|
||||
del action['views']
|
||||
del action['view_id']
|
||||
action['res_id'] = move.id
|
||||
return action
|
||||
33
account_netting/wizards/account_move_make_netting_view.xml
Normal file
33
account_netting/wizards/account_move_make_netting_view.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<act_window name="Compensate"
|
||||
res_model="account.move.make.netting"
|
||||
src_model="account.move.line"
|
||||
view_mode="form"
|
||||
target="new"
|
||||
key2="client_action_multi"
|
||||
multi="True"
|
||||
id="act_account_move_make_netting"/>
|
||||
|
||||
<record id="view_account_move_make_netting_form" model="ir.ui.view">
|
||||
<field name="name">Compensate entries</field>
|
||||
<field name="model">account.move.make.netting</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Compensate entries">
|
||||
<p>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.</p>
|
||||
<group>
|
||||
<field name="balance"/>
|
||||
<field name="balance_type"/>
|
||||
<field name="journal_id"/>
|
||||
</group>
|
||||
<footer>
|
||||
<button name="button_compensate" string="Compensate" type="object" default_focus="1" class="btn-primary"/>
|
||||
<button string="Cancel" class="btn-default" special="cancel" />
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user