mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Merge pull request #468 from akretion/10.0-mig-account_balance_line
[mig] account_balance_line: Migration to 10.0
This commit is contained in:
56
account_balance_line/README.rst
Normal file
56
account_balance_line/README.rst
Normal file
@@ -0,0 +1,56 @@
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
====================
|
||||
Account Balance Line
|
||||
====================
|
||||
|
||||
This module adds a balance total for lines in move line view.
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
#. If you're an accounting adviser, enable developer mode and go to
|
||||
Accounting > Adviser > Journal items.
|
||||
#. Or open an account or a partner, and click on Action > Journal items.
|
||||
#. You will see a column named "Balance" with the balance of the line.
|
||||
|
||||
.. 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/10.0
|
||||
|
||||
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 smashing it by providing a detailed and welcomed feedback.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Vincent revaville <vincent.renaville@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Vicent Cubells <vicent.cubells@tecnativa.com>
|
||||
* Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: http://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: http://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
@@ -1,21 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Author: Vincent Renaville (Camptocamp)
|
||||
# Copyright 2010-2014 Camptocamp SA
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from . import account_move_line
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
@@ -1,50 +1,23 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Author: Vincent Renaville (Camptocamp)
|
||||
# Copyright 2010-2014 Camptocamp SA
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
{'name': 'Balance on lines',
|
||||
'summary': 'Display balance totals in move line view',
|
||||
'version': '8.0.1.1.0',
|
||||
'author': "Camptocamp,Odoo Community Association (OCA)",
|
||||
'maintainter': 'Camptocamp',
|
||||
'category': 'Accounting',
|
||||
'depends': ['account'],
|
||||
'description': """
|
||||
Balance for a line
|
||||
==================
|
||||
|
||||
Add a balance total for grouped lines in move line view.
|
||||
|
||||
Balance field will only be shown when move lines are grouped by account
|
||||
or filtered by account.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Vincent revaville <vincent.renaville@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
""",
|
||||
'website': 'http://www.camptocamp.com',
|
||||
'data': ['account_move_line_view.xml'],
|
||||
'tests': [],
|
||||
'installable': False,
|
||||
'auto_install': False,
|
||||
'license': 'AGPL-3',
|
||||
'application': False,
|
||||
}
|
||||
# Copyright 2010-2014 Camptocamp - Vincent Renaville
|
||||
# Copyright 2016 Tecnativa - Vicent Cubells
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
'name': 'Balance on journal items',
|
||||
'summary': 'Display balance totals in move line view',
|
||||
'version': '10.0.1.0.0',
|
||||
'category': 'Accounting',
|
||||
'website': 'http://www.tecnativa.com,',
|
||||
'author': "Camptocamp,"
|
||||
"Tecnativa,"
|
||||
"Odoo Community Association (OCA)",
|
||||
'license': 'AGPL-3',
|
||||
'application': False,
|
||||
'installable': True,
|
||||
'depends': [
|
||||
'account'
|
||||
],
|
||||
'data': [
|
||||
'views/account_move_line_view.xml'
|
||||
],
|
||||
}
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Author: Vincent Renaville (Camptocamp)
|
||||
# Copyright 2010-2014 Camptocamp SA
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from openerp.osv import orm, fields
|
||||
|
||||
|
||||
class account_move_line(orm.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
def _line_balance(self, cr, uid, ids, field, arg, context=None):
|
||||
res = {}
|
||||
move_lines = self.read(cr, uid, ids,
|
||||
['debit', 'credit'],
|
||||
context=context)
|
||||
|
||||
for line in move_lines:
|
||||
res[line['id']] = line['debit'] - line['credit']
|
||||
return res
|
||||
|
||||
_columns = {
|
||||
'line_balance': fields.function(
|
||||
_line_balance, method=True,
|
||||
string='Balance',
|
||||
store=True),
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<record id="view_account_move_line_filter_balance" model="ir.ui.view">
|
||||
<field name="name">Journal Items add visibilty for balance</field>
|
||||
<field name="model">account.move.line</field>
|
||||
<field name="inherit_id" ref="account.view_account_move_line_filter"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="account_id" position="attributes">
|
||||
<attribute name="context">{'invisible_balance': False}</attribute>
|
||||
</field>
|
||||
<filter string="Account" position="attributes">
|
||||
<attribute name="context">{'group_by': 'account_id', 'invisible_balance': False}</attribute>
|
||||
</filter>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="account_move_line_balance_custom">
|
||||
<field name="name">account_move_line_balance_custom</field>
|
||||
<field name="model">account.move.line</field>
|
||||
<field name="inherit_id" ref="account.view_move_line_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="credit" position="after" >
|
||||
<field name="line_balance" sum="Total Balance" invisible="context.get('invisible_balance', True)"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</openerp>
|
||||
@@ -1,53 +0,0 @@
|
||||
# Translation of OpenERP Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenERP Server 7.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-06-20 14:11+0000\n"
|
||||
"PO-Revision-Date: 2014-06-20 14:11+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:0
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Entry lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: code:_description:0
|
||||
#, python-format
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:0
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:0
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:0
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "عناصر دفتر اليومية"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Stavke dnevnika"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
34
account_balance_line/i18n/ca.po
Normal file
34
account_balance_line/i18n/ca.po
Normal file
@@ -0,0 +1,34 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr "Balanç"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
@@ -36,13 +36,3 @@ msgstr "Položky deníku"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 16:14+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n"
|
||||
"POT-Creation-Date: 2017-02-22 01:37+0000\n"
|
||||
"PO-Revision-Date: 2017-02-22 01:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,6 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
msgid "Balance"
|
||||
msgstr "Saldo"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Journaleinträge"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr "Gesamt-Saldo"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr "{'invisible_balance': False}"
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Journal Items"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
|
||||
"POT-Creation-Date: 2017-02-22 01:37+0000\n"
|
||||
"PO-Revision-Date: 2017-02-22 01:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,6 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Apuntes contables"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
msgstr "Total saldo"
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Elementos diario"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Asientos Contables"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,11 +3,24 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
|
||||
# Giacomo <giacomo.spettoli@gmail.com>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Mohamed HABOU <m.habou@agoradeveloppement.com>, 2016
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"POT-Creation-Date: 2016-12-02 23:17+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n"
|
||||
@@ -20,7 +33,7 @@ msgstr ""
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "Cuenta"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
@@ -36,13 +49,3 @@ msgstr "Elementos diario"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 16:14+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
|
||||
"POT-Creation-Date: 2017-02-22 01:37+0000\n"
|
||||
"PO-Revision-Date: 2017-02-22 01:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,6 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
msgid "Balance"
|
||||
msgstr "Balance"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Écritures comptables"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr "Balance Totale"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
34
account_balance_line/i18n/gl.po
Normal file
34
account_balance_line/i18n/gl.po
Normal file
@@ -0,0 +1,34 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Alejandro Santana <alejandrosantana@anubia.es>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr "Balance"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
@@ -36,13 +36,3 @@ msgstr "Stavke dnevnika"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
34
account_balance_line/i18n/hr_HR.po
Normal file
34
account_balance_line/i18n/hr_HR.po
Normal file
@@ -0,0 +1,34 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka devnika"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
@@ -36,13 +36,3 @@ msgstr "Könyvelési tételsorok"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,16 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr "Conto"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
msgstr "Saldo"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Voci Sezionale"
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "仕訳項目"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "DK įrašai"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Ставки на дневник"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Журналын бичилт"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Journal Elementer"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
34
account_balance_line/i18n/nb_NO.po
Normal file
34
account_balance_line/i18n/nb_NO.po
Normal file
@@ -0,0 +1,34 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalgjenstand"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
@@ -3,14 +3,16 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +20,16 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
msgstr "Saldo"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Boekingsregels"
|
||||
msgid "Journal Item"
|
||||
msgstr "Boekingsregel"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Boekingslijnen"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,16 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Items Diários"
|
||||
msgid "Journal Item"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Claudio Araujo Santos <claudioaraujosantos@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Claudio Araujo Santos <claudioaraujosantos@gmail.com>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -18,31 +19,16 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Itens do Diário"
|
||||
msgid "Journal Item"
|
||||
msgstr "Diário Item"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
35
account_balance_line/i18n/pt_PT.po
Normal file
35
account_balance_line/i18n/pt_PT.po
Normal file
@@ -0,0 +1,35 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-08 03:37+0000\n"
|
||||
"PO-Revision-Date: 2017-01-08 03:37+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model.fields,field_description:account_balance_line.field_account_move_line_line_balance
|
||||
msgid "Balance"
|
||||
msgstr "Saldo"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
@@ -36,13 +36,3 @@ msgstr "Elementele Jurnalului"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Элементы журнала"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3,15 +3,15 @@
|
||||
# * account_balance_line
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-21 08:58+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
|
||||
"POT-Creation-Date: 2017-02-22 01:37+0000\n"
|
||||
"PO-Revision-Date: 2017-02-22 01:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
@@ -19,31 +19,6 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: field:account.move.line,line_balance:0
|
||||
msgid "Balance"
|
||||
msgstr "Stanje"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: model:ir.model,name:account_balance_line.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Dnevniške postavke"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
#: model:ir.ui.view,arch_db:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr "Skupna bilanca"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr "{'invisible_balance': False}"
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Transaktioner"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "Günlük Maddeleri"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "日记帐项目"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,13 +36,3 @@ msgstr "帳簿項目"
|
||||
#: view:account.move.line:account_balance_line.account_move_line_balance_custom
|
||||
msgid "Total Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'group_by': 'account_id', 'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_balance_line
|
||||
#: view:account.move.line:account_balance_line.view_account_move_line_filter_balance
|
||||
msgid "{'invisible_balance': False}"
|
||||
msgstr ""
|
||||
|
||||
14
account_balance_line/views/account_move_line_view.xml
Normal file
14
account_balance_line/views/account_move_line_view.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="account_move_line_balance_custom">
|
||||
<field name="model">account.move.line</field>
|
||||
<field name="inherit_id" ref="account.view_move_line_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="credit" position="after" >
|
||||
<field name="balance" sum="Total Balance" invisible="0"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user