From 8500d1d882f5724f47cab75fe6906538a5c3a0f2 Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Fri, 9 Jun 2017 03:40:27 +0200 Subject: [PATCH 01/26] [9.0][ADD] account_invoice_line_report: New module (#51) OCA Transbot updated translations from Transifex --- account_invoice_line_report/README.rst | 55 +++++++++++++++++ account_invoice_line_report/__init__.py | 1 + account_invoice_line_report/__openerp__.py | 20 ++++++ account_invoice_line_report/i18n/ar.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/bs.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/ca.po | 59 ++++++++++++++++++ account_invoice_line_report/i18n/cs.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/de.po | 59 ++++++++++++++++++ account_invoice_line_report/i18n/en_GB.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/es.po | 61 +++++++++++++++++++ account_invoice_line_report/i18n/es_CR.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/es_EC.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/es_MX.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/et.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/fr.po | 59 ++++++++++++++++++ account_invoice_line_report/i18n/fr_CH.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/hr.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/hr_HR.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/hu.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/it.po | 59 ++++++++++++++++++ account_invoice_line_report/i18n/ja.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/lt.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/mk.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/mn.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/nb.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/nl.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/nl_BE.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/nl_NL.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/pt.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/pt_BR.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/pt_PT.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/ro.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/ru.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/sl.po | 59 ++++++++++++++++++ account_invoice_line_report/i18n/sv.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/tr.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/tr_TR.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/zh_CN.po | 58 ++++++++++++++++++ account_invoice_line_report/i18n/zh_TW.po | 58 ++++++++++++++++++ .../report/account_invoice_report_view.xml | 51 ++++++++++++++++ 40 files changed, 2223 insertions(+) create mode 100644 account_invoice_line_report/README.rst create mode 100644 account_invoice_line_report/__init__.py create mode 100644 account_invoice_line_report/__openerp__.py create mode 100644 account_invoice_line_report/i18n/ar.po create mode 100644 account_invoice_line_report/i18n/bs.po create mode 100644 account_invoice_line_report/i18n/ca.po create mode 100644 account_invoice_line_report/i18n/cs.po create mode 100644 account_invoice_line_report/i18n/de.po create mode 100644 account_invoice_line_report/i18n/en_GB.po create mode 100644 account_invoice_line_report/i18n/es.po create mode 100644 account_invoice_line_report/i18n/es_CR.po create mode 100644 account_invoice_line_report/i18n/es_EC.po create mode 100644 account_invoice_line_report/i18n/es_MX.po create mode 100644 account_invoice_line_report/i18n/et.po create mode 100644 account_invoice_line_report/i18n/fr.po create mode 100644 account_invoice_line_report/i18n/fr_CH.po create mode 100644 account_invoice_line_report/i18n/hr.po create mode 100644 account_invoice_line_report/i18n/hr_HR.po create mode 100644 account_invoice_line_report/i18n/hu.po create mode 100644 account_invoice_line_report/i18n/it.po create mode 100644 account_invoice_line_report/i18n/ja.po create mode 100644 account_invoice_line_report/i18n/lt.po create mode 100644 account_invoice_line_report/i18n/mk.po create mode 100644 account_invoice_line_report/i18n/mn.po create mode 100644 account_invoice_line_report/i18n/nb.po create mode 100644 account_invoice_line_report/i18n/nl.po create mode 100644 account_invoice_line_report/i18n/nl_BE.po create mode 100644 account_invoice_line_report/i18n/nl_NL.po create mode 100644 account_invoice_line_report/i18n/pt.po create mode 100644 account_invoice_line_report/i18n/pt_BR.po create mode 100644 account_invoice_line_report/i18n/pt_PT.po create mode 100644 account_invoice_line_report/i18n/ro.po create mode 100644 account_invoice_line_report/i18n/ru.po create mode 100644 account_invoice_line_report/i18n/sl.po create mode 100644 account_invoice_line_report/i18n/sv.po create mode 100644 account_invoice_line_report/i18n/tr.po create mode 100644 account_invoice_line_report/i18n/tr_TR.po create mode 100644 account_invoice_line_report/i18n/zh_CN.po create mode 100644 account_invoice_line_report/i18n/zh_TW.po create mode 100644 account_invoice_line_report/report/account_invoice_report_view.xml diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst new file mode 100644 index 000000000..e1037faaf --- /dev/null +++ b/account_invoice_line_report/README.rst @@ -0,0 +1,55 @@ +.. 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 Invoice Line Report +=========================== + +This module creates a new view to manage invoice lines information. + +Usage +===== + +To use this module, you need to: + +#. Go to Accounting > Reporting > Business Intelligence > Invoice Lines + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/94/9.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble +, please check there if your issue has already been reported. If you spotted +it first, help us smashing it by providing a detailed and welcomed feedback. + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Carlos Dauden - Tecnativa + + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. + diff --git a/account_invoice_line_report/__init__.py b/account_invoice_line_report/__init__.py new file mode 100644 index 000000000..40a96afc6 --- /dev/null +++ b/account_invoice_line_report/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/account_invoice_line_report/__openerp__.py b/account_invoice_line_report/__openerp__.py new file mode 100644 index 000000000..f4e7645de --- /dev/null +++ b/account_invoice_line_report/__openerp__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Carlos Dauden - Tecnativa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Account Invoice Line Report', + 'summary': 'New view to manage invoice lines information', + 'version': '9.0.1.0.0', + 'category': 'Account', + 'website': 'http://www.tecnativa.com', + 'author': 'Tecnativa, ' + 'Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'depends': [ + 'account_accountant', + ], + 'data': [ + 'report/account_invoice_report_view.xml', + ], +} diff --git a/account_invoice_line_report/i18n/ar.po b/account_invoice_line_report/i18n/ar.po new file mode 100644 index 000000000..ebda67c5c --- /dev/null +++ b/account_invoice_line_report/i18n/ar.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "خط الفاتورة" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/bs.po b/account_invoice_line_report/i18n/bs.po new file mode 100644 index 000000000..a1fc69ac4 --- /dev/null +++ b/account_invoice_line_report/i18n/bs.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Stavka fakture" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/ca.po b/account_invoice_line_report/i18n/ca.po new file mode 100644 index 000000000..c0f1b2626 --- /dev/null +++ b/account_invoice_line_report/i18n/ca.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# Carles Antoli , 2017 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Línia factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Línies de factura" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/cs.po b/account_invoice_line_report/i18n/cs.po new file mode 100644 index 000000000..332bb8de5 --- /dev/null +++ b/account_invoice_line_report/i18n/cs.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Řádek faktury" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po new file mode 100644 index 000000000..91e485222 --- /dev/null +++ b/account_invoice_line_report/i18n/de.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Rudolf Schnapka , 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" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Rechnungsposition" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Abrechnungspositionen" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "Partner-Schlagworte" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/en_GB.po b/account_invoice_line_report/i18n/en_GB.po new file mode 100644 index 000000000..1e3b7080a --- /dev/null +++ b/account_invoice_line_report/i18n/en_GB.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Invoice Line" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/es.po b/account_invoice_line_report/i18n/es.po new file mode 100644 index 000000000..706712618 --- /dev/null +++ b/account_invoice_line_report/i18n/es.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-21 19:03+0100\n" +"PO-Revision-Date: 2017-03-21 19:04+0100\n" +"Last-Translator: Carlos Dauden \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"X-Generator: Poedit 1.8.7.1\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" +"Con este informe puede obtener una vista general de la cantidad facturada " +"a sus clientes. Puede utilizar la herramienta de búsqueda para " +"personalizar sus Informes de facturas y el resto, ajustando el análisis a " +"sus necesidades." + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Líneas de factura" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "Etiquetas de empresa" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "Vendedor contiene" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "Con precio" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "Sin precio" diff --git a/account_invoice_line_report/i18n/es_CR.po b/account_invoice_line_report/i18n/es_CR.po new file mode 100644 index 000000000..719e53781 --- /dev/null +++ b/account_invoice_line_report/i18n/es_CR.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/es_EC.po b/account_invoice_line_report/i18n/es_EC.po new file mode 100644 index 000000000..aa56f385b --- /dev/null +++ b/account_invoice_line_report/i18n/es_EC.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Detalle de Factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/es_MX.po b/account_invoice_line_report/i18n/es_MX.po new file mode 100644 index 000000000..974817956 --- /dev/null +++ b/account_invoice_line_report/i18n/es_MX.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/et.po b/account_invoice_line_report/i18n/et.po new file mode 100644 index 000000000..4f6bf36dc --- /dev/null +++ b/account_invoice_line_report/i18n/et.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Arve rida" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po new file mode 100644 index 000000000..63fe47fe4 --- /dev/null +++ b/account_invoice_line_report/i18n/fr.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +# Guewen Baconnier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Guewen Baconnier , 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" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Ligne de facture" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "Catégories de partenaires" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/fr_CH.po b/account_invoice_line_report/i18n/fr_CH.po new file mode 100644 index 000000000..aa892c841 --- /dev/null +++ b/account_invoice_line_report/i18n/fr_CH.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Ligne de facture" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po new file mode 100644 index 000000000..3c7aa9e7a --- /dev/null +++ b/account_invoice_line_report/i18n/hr.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: 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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Stavka računa" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/hr_HR.po b/account_invoice_line_report/i18n/hr_HR.po new file mode 100644 index 000000000..d552bf7dd --- /dev/null +++ b/account_invoice_line_report/i18n/hr_HR.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Bole , 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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Stavke računa" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/hu.po b/account_invoice_line_report/i18n/hu.po new file mode 100644 index 000000000..61ae070de --- /dev/null +++ b/account_invoice_line_report/i18n/hu.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Számlasor" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/it.po b/account_invoice_line_report/i18n/it.po new file mode 100644 index 000000000..8c7d44901 --- /dev/null +++ b/account_invoice_line_report/i18n/it.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Paolo Valier , 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" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Riga Fattura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Righe Fattura" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/ja.po b/account_invoice_line_report/i18n/ja.po new file mode 100644 index 000000000..d98c5ae1b --- /dev/null +++ b/account_invoice_line_report/i18n/ja.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "請求行" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/lt.po b/account_invoice_line_report/i18n/lt.po new file mode 100644 index 000000000..55a4922a7 --- /dev/null +++ b/account_invoice_line_report/i18n/lt.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Sąskaitos faktūros eilutė" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/mk.po b/account_invoice_line_report/i18n/mk.po new file mode 100644 index 000000000..584defbb5 --- /dev/null +++ b/account_invoice_line_report/i18n/mk.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Ставка од фактура" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/mn.po b/account_invoice_line_report/i18n/mn.po new file mode 100644 index 000000000..0f2ca17c9 --- /dev/null +++ b/account_invoice_line_report/i18n/mn.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Нэхэмжлэлийн мөр" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/nb.po b/account_invoice_line_report/i18n/nb.po new file mode 100644 index 000000000..25387b8be --- /dev/null +++ b/account_invoice_line_report/i18n/nb.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Fakturalinje" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/nl.po b/account_invoice_line_report/i18n/nl.po new file mode 100644 index 000000000..039683fae --- /dev/null +++ b/account_invoice_line_report/i18n/nl.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 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" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Factuurregel" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Sjablonen factuurregels" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/nl_BE.po b/account_invoice_line_report/i18n/nl_BE.po new file mode 100644 index 000000000..3c3002943 --- /dev/null +++ b/account_invoice_line_report/i18n/nl_BE.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Factuurlijn" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/nl_NL.po b/account_invoice_line_report/i18n/nl_NL.po new file mode 100644 index 000000000..c4a38720f --- /dev/null +++ b/account_invoice_line_report/i18n/nl_NL.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 23:41+0000\n" +"PO-Revision-Date: 2017-06-30 23:41+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Factuurregel" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/pt.po b/account_invoice_line_report/i18n/pt.po new file mode 100644 index 000000000..b52ab697d --- /dev/null +++ b/account_invoice_line_report/i18n/pt.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 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" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Linha de fatura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/pt_BR.po b/account_invoice_line_report/i18n/pt_BR.po new file mode 100644 index 000000000..d60415f86 --- /dev/null +++ b/account_invoice_line_report/i18n/pt_BR.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 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" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "LInha da fatura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/pt_PT.po b/account_invoice_line_report/i18n/pt_PT.po new file mode 100644 index 000000000..b17fcba18 --- /dev/null +++ b/account_invoice_line_report/i18n/pt_PT.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Linha da Fatura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/ro.po b/account_invoice_line_report/i18n/ro.po new file mode 100644 index 000000000..5cf537be5 --- /dev/null +++ b/account_invoice_line_report/i18n/ro.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Linie factura" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/ru.po b/account_invoice_line_report/i18n/ru.po new file mode 100644 index 000000000..5fa63b4ec --- /dev/null +++ b/account_invoice_line_report/i18n/ru.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Позиция счета" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/sl.po b/account_invoice_line_report/i18n/sl.po new file mode 100644 index 000000000..e8efa2cc2 --- /dev/null +++ b/account_invoice_line_report/i18n/sl.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Matjaž Mozetič , 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" +"Language: sl\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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Postavka računa" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "Postavke računa" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "Oznake partnerja" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/sv.po b/account_invoice_line_report/i18n/sv.po new file mode 100644 index 000000000..02a54f774 --- /dev/null +++ b/account_invoice_line_report/i18n/sv.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Fakturarad" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/tr.po b/account_invoice_line_report/i18n/tr.po new file mode 100644 index 000000000..fdb6561fe --- /dev/null +++ b/account_invoice_line_report/i18n/tr.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Fatura kalemi" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/tr_TR.po b/account_invoice_line_report/i18n/tr_TR.po new file mode 100644 index 000000000..2ef8a7364 --- /dev/null +++ b/account_invoice_line_report/i18n/tr_TR.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "Fatura hizası" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/zh_CN.po b/account_invoice_line_report/i18n/zh_CN.po new file mode 100644 index 000000000..f493e3bdd --- /dev/null +++ b/account_invoice_line_report/i18n/zh_CN.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "发票明细" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/i18n/zh_TW.po b/account_invoice_line_report/i18n/zh_TW.po new file mode 100644 index 000000000..ba8bba011 --- /dev/null +++ b/account_invoice_line_report/i18n/zh_TW.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 02:58+0000\n" +"PO-Revision-Date: 2017-06-09 02:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "發票明細" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml new file mode 100644 index 000000000..82850157f --- /dev/null +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -0,0 +1,51 @@ + + + + + + account.invoice.report.tree.info + account.invoice.report + + + + + + + + + + + + + + + account.invoice.report + + + + + + + + + + + + + + + + + Invoice Lines + account.invoice.report + form + tree,pivot,graph + + + From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs. + + + + + From 6b51df4cbd92df73328867abad714d7e9a0b5dad Mon Sep 17 00:00:00 2001 From: cubells Date: Tue, 20 Mar 2018 12:57:52 +0100 Subject: [PATCH 02/26] [MIG] account_invoice_line_report: Migration to 11.0 [UPD] Update account_invoice_line_report.pot [ADD] icon.png --- account_invoice_line_report/README.rst | 13 +++-- account_invoice_line_report/__init__.py | 1 - .../{__openerp__.py => __manifest__.py} | 7 +-- .../i18n/account_invoice_line_report.pot | 51 ++++++++++++++++++ account_invoice_line_report/i18n/ar.po | 7 +-- account_invoice_line_report/i18n/bs.po | 7 +-- account_invoice_line_report/i18n/ca.po | 4 +- account_invoice_line_report/i18n/cs.po | 4 +- account_invoice_line_report/i18n/de.po | 4 +- account_invoice_line_report/i18n/en_GB.po | 7 +-- account_invoice_line_report/i18n/es.po | 20 ++++--- account_invoice_line_report/i18n/es_CR.po | 7 +-- account_invoice_line_report/i18n/es_EC.po | 7 +-- account_invoice_line_report/i18n/es_MX.po | 7 +-- account_invoice_line_report/i18n/et.po | 4 +- account_invoice_line_report/i18n/fr.po | 4 +- account_invoice_line_report/i18n/fr_CH.po | 7 +-- account_invoice_line_report/i18n/hr.po | 7 +-- account_invoice_line_report/i18n/hr_HR.po | 10 ++-- account_invoice_line_report/i18n/hu.po | 4 +- account_invoice_line_report/i18n/it.po | 4 +- account_invoice_line_report/i18n/ja.po | 4 +- account_invoice_line_report/i18n/lt.po | 7 +-- account_invoice_line_report/i18n/mk.po | 4 +- account_invoice_line_report/i18n/mn.po | 4 +- account_invoice_line_report/i18n/nb.po | 7 +-- account_invoice_line_report/i18n/nl.po | 4 +- account_invoice_line_report/i18n/nl_BE.po | 7 +-- account_invoice_line_report/i18n/nl_NL.po | 7 +-- account_invoice_line_report/i18n/pt.po | 4 +- account_invoice_line_report/i18n/pt_BR.po | 7 +-- account_invoice_line_report/i18n/pt_PT.po | 7 +-- account_invoice_line_report/i18n/ro.po | 7 +-- account_invoice_line_report/i18n/ru.po | 8 +-- account_invoice_line_report/i18n/sl.po | 7 +-- account_invoice_line_report/i18n/sv.po | 4 +- account_invoice_line_report/i18n/tr.po | 4 +- account_invoice_line_report/i18n/tr_TR.po | 7 +-- account_invoice_line_report/i18n/zh_CN.po | 7 +-- account_invoice_line_report/i18n/zh_TW.po | 7 +-- .../report/account_invoice_report_view.xml | 1 - .../static/description/icon.png | Bin 0 -> 9455 bytes 42 files changed, 189 insertions(+), 111 deletions(-) rename account_invoice_line_report/{__openerp__.py => __manifest__.py} (77%) create mode 100644 account_invoice_line_report/i18n/account_invoice_line_report.pot create mode 100644 account_invoice_line_report/static/description/icon.png diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst index e1037faaf..855984dc2 100644 --- a/account_invoice_line_report/README.rst +++ b/account_invoice_line_report/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 =========================== @@ -8,6 +8,12 @@ Account Invoice Line Report This module creates a new view to manage invoice lines information. +Configuration +============= + +In order to see invoice line information, you must install sales management +app. + Usage ===== @@ -17,7 +23,7 @@ To use this module, you need to: .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/94/9.0 + :target: https://runbot.odoo-community.org/runbot/94/11.0 Bug Tracker =========== @@ -36,6 +42,7 @@ Contributors ------------ * Carlos Dauden - Tecnativa +* Vicent Cubells - Tecnativa Maintainer diff --git a/account_invoice_line_report/__init__.py b/account_invoice_line_report/__init__.py index 40a96afc6..e69de29bb 100644 --- a/account_invoice_line_report/__init__.py +++ b/account_invoice_line_report/__init__.py @@ -1 +0,0 @@ -# -*- coding: utf-8 -*- diff --git a/account_invoice_line_report/__openerp__.py b/account_invoice_line_report/__manifest__.py similarity index 77% rename from account_invoice_line_report/__openerp__.py rename to account_invoice_line_report/__manifest__.py index f4e7645de..e118a9e4b 100644 --- a/account_invoice_line_report/__openerp__.py +++ b/account_invoice_line_report/__manifest__.py @@ -1,20 +1,21 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Carlos Dauden - Tecnativa +# Copyright 2018 Vicent Cubells - Tecnativa # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Invoice Line Report', 'summary': 'New view to manage invoice lines information', - 'version': '9.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Account', 'website': 'http://www.tecnativa.com', 'author': 'Tecnativa, ' 'Odoo Community Association (OCA)', 'license': 'AGPL-3', 'depends': [ - 'account_accountant', + 'account', ], 'data': [ 'report/account_invoice_report_view.xml', ], + 'installable': True, } diff --git a/account_invoice_line_report/i18n/account_invoice_line_report.pot b/account_invoice_line_report/i18n/account_invoice_line_report.pot new file mode 100644 index 000000000..376ac7d38 --- /dev/null +++ b/account_invoice_line_report/i18n/account_invoice_line_report.pot @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +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_invoice_line_report +#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Partner Tags" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Vendor contains" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" + diff --git a/account_invoice_line_report/i18n/ar.po b/account_invoice_line_report/i18n/ar.po index ebda67c5c..faffd6b2b 100644 --- a/account_invoice_line_report/i18n/ar.po +++ b/account_invoice_line_report/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/bs.po b/account_invoice_line_report/i18n/bs.po index a1fc69ac4..3d0cb560a 100644 --- a/account_invoice_line_report/i18n/bs.po +++ b/account_invoice_line_report/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/ca.po b/account_invoice_line_report/i18n/ca.po index c0f1b2626..fc716b760 100644 --- a/account_invoice_line_report/i18n/ca.po +++ b/account_invoice_line_report/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # Carles Antoli , 2017 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Marc Tormo i Bochaca , 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" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/cs.po b/account_invoice_line_report/i18n/cs.po index 332bb8de5..c647dd206 100644 --- a/account_invoice_line_report/i18n/cs.po +++ b/account_invoice_line_report/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index 91e485222..8cff9453b 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/en_GB.po b/account_invoice_line_report/i18n/en_GB.po index 1e3b7080a..8d0e43c15 100644 --- a/account_invoice_line_report/i18n/en_GB.po +++ b/account_invoice_line_report/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\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" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/es.po b/account_invoice_line_report/i18n/es.po index 706712618..6e92878eb 100644 --- a/account_invoice_line_report/i18n/es.po +++ b/account_invoice_line_report/i18n/es.po @@ -4,18 +4,17 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-21 19:03+0100\n" -"PO-Revision-Date: 2017-03-21 19:04+0100\n" -"Last-Translator: Carlos Dauden \n" +"POT-Creation-Date: 2018-03-20 11:51+0000\n" +"PO-Revision-Date: 2018-03-20 11:51+0000\n" +"Last-Translator: <>\n" "Language-Team: \n" -"Language: es\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: \n" "Plural-Forms: \n" -"X-Generator: Poedit 1.8.7.1\n" #. module: account_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -24,10 +23,9 @@ msgid "" "customers. The search tool can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" -"Con este informe puede obtener una vista general de la cantidad facturada " -"a sus clientes. Puede utilizar la herramienta de búsqueda para " -"personalizar sus Informes de facturas y el resto, ajustando el análisis a " -"sus necesidades." +"Con este informe puede obtener una vista general de la cantidad facturada a " +"sus clientes. Puede utilizar la herramienta de búsqueda para personalizar " +"sus Informes de facturas y el resto, ajustando el análisis a sus necesidades." #. module: account_invoice_line_report #: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info diff --git a/account_invoice_line_report/i18n/es_CR.po b/account_invoice_line_report/i18n/es_CR.po index 719e53781..97f1cc95f 100644 --- a/account_invoice_line_report/i18n/es_CR.po +++ b/account_invoice_line_report/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/es_EC.po b/account_invoice_line_report/i18n/es_EC.po index aa56f385b..c2195b34b 100644 --- a/account_invoice_line_report/i18n/es_EC.po +++ b/account_invoice_line_report/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\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" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/es_MX.po b/account_invoice_line_report/i18n/es_MX.po index 974817956..ca473d644 100644 --- a/account_invoice_line_report/i18n/es_MX.po +++ b/account_invoice_line_report/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/et.po b/account_invoice_line_report/i18n/et.po index 4f6bf36dc..5645d6c27 100644 --- a/account_invoice_line_report/i18n/et.po +++ b/account_invoice_line_report/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index 63fe47fe4..4a0fce6b5 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 # Guewen Baconnier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Guewen Baconnier , 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" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/fr_CH.po b/account_invoice_line_report/i18n/fr_CH.po index aa892c841..f1626e5e2 100644 --- a/account_invoice_line_report/i18n/fr_CH.po +++ b/account_invoice_line_report/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\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" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po index 3c7aa9e7a..6c0d627bb 100644 --- a/account_invoice_line_report/i18n/hr.po +++ b/account_invoice_line_report/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: 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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/hr_HR.po b/account_invoice_line_report/i18n/hr_HR.po index d552bf7dd..61a9b5643 100644 --- a/account_invoice_line_report/i18n/hr_HR.po +++ b/account_invoice_line_report/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # Bole , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Bole , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\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" -"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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/hu.po b/account_invoice_line_report/i18n/hu.po index 61ae070de..3ce373f77 100644 --- a/account_invoice_line_report/i18n/hu.po +++ b/account_invoice_line_report/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/it.po b/account_invoice_line_report/i18n/it.po index 8c7d44901..e9d399764 100644 --- a/account_invoice_line_report/i18n/it.po +++ b/account_invoice_line_report/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Paolo Valier , 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" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/ja.po b/account_invoice_line_report/i18n/ja.po index d98c5ae1b..c2162da2e 100644 --- a/account_invoice_line_report/i18n/ja.po +++ b/account_invoice_line_report/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/lt.po b/account_invoice_line_report/i18n/lt.po index 55a4922a7..3d475e644 100644 --- a/account_invoice_line_report/i18n/lt.po +++ b/account_invoice_line_report/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/mk.po b/account_invoice_line_report/i18n/mk.po index 584defbb5..7633b3293 100644 --- a/account_invoice_line_report/i18n/mk.po +++ b/account_invoice_line_report/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/mn.po b/account_invoice_line_report/i18n/mn.po index 0f2ca17c9..4ab81e1ca 100644 --- a/account_invoice_line_report/i18n/mn.po +++ b/account_invoice_line_report/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/nb.po b/account_invoice_line_report/i18n/nb.po index 25387b8be..7a3739dc8 100644 --- a/account_invoice_line_report/i18n/nb.po +++ b/account_invoice_line_report/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\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" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/nl.po b/account_invoice_line_report/i18n/nl.po index 039683fae..ea7385f85 100644 --- a/account_invoice_line_report/i18n/nl.po +++ b/account_invoice_line_report/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/nl_BE.po b/account_invoice_line_report/i18n/nl_BE.po index 3c3002943..920008ddd 100644 --- a/account_invoice_line_report/i18n/nl_BE.po +++ b/account_invoice_line_report/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\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" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/nl_NL.po b/account_invoice_line_report/i18n/nl_NL.po index c4a38720f..4e66e2f44 100644 --- a/account_invoice_line_report/i18n/nl_NL.po +++ b/account_invoice_line_report/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-30 23:41+0000\n" "PO-Revision-Date: 2017-06-30 23:41+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/pt.po b/account_invoice_line_report/i18n/pt.po index b52ab697d..3b0c643a0 100644 --- a/account_invoice_line_report/i18n/pt.po +++ b/account_invoice_line_report/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/pt_BR.po b/account_invoice_line_report/i18n/pt_BR.po index d60415f86..799a2ada2 100644 --- a/account_invoice_line_report/i18n/pt_BR.po +++ b/account_invoice_line_report/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/pt_PT.po b/account_invoice_line_report/i18n/pt_PT.po index b17fcba18..1a6959816 100644 --- a/account_invoice_line_report/i18n/pt_PT.po +++ b/account_invoice_line_report/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\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" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/ro.po b/account_invoice_line_report/i18n/ro.po index 5cf537be5..3b5023764 100644 --- a/account_invoice_line_report/i18n/ro.po +++ b/account_invoice_line_report/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: account_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/ru.po b/account_invoice_line_report/i18n/ru.po index 5fa63b4ec..4ff07165d 100644 --- a/account_invoice_line_report/i18n/ru.po +++ b/account_invoice_line_report/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\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" +"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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/sl.po b/account_invoice_line_report/i18n/sl.po index e8efa2cc2..24707e3a0 100644 --- a/account_invoice_line_report/i18n/sl.po +++ b/account_invoice_line_report/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 # Matjaž Mozetič , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Matjaž Mozetič , 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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\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_invoice_line_report #: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report diff --git a/account_invoice_line_report/i18n/sv.po b/account_invoice_line_report/i18n/sv.po index 02a54f774..dad40a9eb 100644 --- a/account_invoice_line_report/i18n/sv.po +++ b/account_invoice_line_report/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/tr.po b/account_invoice_line_report/i18n/tr.po index fdb6561fe..62fd82584 100644 --- a/account_invoice_line_report/i18n/tr.po +++ b/account_invoice_line_report/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Ozge Altinisik , 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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/tr_TR.po b/account_invoice_line_report/i18n/tr_TR.po index 2ef8a7364..1a03584b5 100644 --- a/account_invoice_line_report/i18n/tr_TR.po +++ b/account_invoice_line_report/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\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" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/zh_CN.po b/account_invoice_line_report/i18n/zh_CN.po index f493e3bdd..dfaf527fb 100644 --- a/account_invoice_line_report/i18n/zh_CN.po +++ b/account_invoice_line_report/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\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" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/i18n/zh_TW.po b/account_invoice_line_report/i18n/zh_TW.po index ba8bba011..e91a9ce82 100644 --- a/account_invoice_line_report/i18n/zh_TW.po +++ b/account_invoice_line_report/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_invoice_line_report -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-09 02:58+0000\n" "PO-Revision-Date: 2017-06-09 02:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\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" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index 82850157f..306a57983 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -41,7 +41,6 @@ account.invoice.report form tree,pivot,graph - From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs. diff --git a/account_invoice_line_report/static/description/icon.png b/account_invoice_line_report/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From afd035ba86ee4cd32cd7006f813c92a777e8b176 Mon Sep 17 00:00:00 2001 From: Kitti U Date: Sun, 9 Jun 2019 22:10:59 +0700 Subject: [PATCH 03/26] [12.0][MIG] account_invoice_line_report --- account_invoice_line_report/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index e118a9e4b..5e30eb01d 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Account Invoice Line Report', 'summary': 'New view to manage invoice lines information', - 'version': '11.0.1.0.0', + 'version': '12.0.1.0.0', 'category': 'Account', 'website': 'http://www.tecnativa.com', 'author': 'Tecnativa, ' From e997a108f7fb64bb6fcdc56e789c00971dbacc69 Mon Sep 17 00:00:00 2001 From: Kitti U Date: Mon, 10 Jun 2019 12:03:15 +0700 Subject: [PATCH 04/26] [12.0][IMG] account_invoice_line_report [UPD] Update account_invoice_line_report.pot [UPD] README.rst Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-invoice-reporting-12.0/account-invoice-reporting-12.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-account_invoice_line_report/ --- account_invoice_line_report/README.rst | 79 ++-- account_invoice_line_report/__manifest__.py | 2 +- .../i18n/account_invoice_line_report.pot | 14 +- account_invoice_line_report/i18n/ar.po | 12 +- account_invoice_line_report/i18n/bs.po | 12 +- account_invoice_line_report/i18n/ca.po | 12 +- account_invoice_line_report/i18n/cs.po | 12 +- account_invoice_line_report/i18n/de.po | 12 +- account_invoice_line_report/i18n/en_GB.po | 12 +- account_invoice_line_report/i18n/es.po | 12 +- account_invoice_line_report/i18n/es_CR.po | 12 +- account_invoice_line_report/i18n/es_EC.po | 12 +- account_invoice_line_report/i18n/es_MX.po | 12 +- account_invoice_line_report/i18n/et.po | 12 +- account_invoice_line_report/i18n/fr.po | 12 +- account_invoice_line_report/i18n/fr_CH.po | 12 +- account_invoice_line_report/i18n/hr.po | 12 +- account_invoice_line_report/i18n/hr_HR.po | 12 +- account_invoice_line_report/i18n/hu.po | 12 +- account_invoice_line_report/i18n/it.po | 12 +- account_invoice_line_report/i18n/ja.po | 12 +- account_invoice_line_report/i18n/lt.po | 12 +- account_invoice_line_report/i18n/mk.po | 12 +- account_invoice_line_report/i18n/mn.po | 12 +- account_invoice_line_report/i18n/nb.po | 12 +- account_invoice_line_report/i18n/nl.po | 12 +- account_invoice_line_report/i18n/nl_BE.po | 12 +- account_invoice_line_report/i18n/nl_NL.po | 12 +- account_invoice_line_report/i18n/pt.po | 12 +- account_invoice_line_report/i18n/pt_BR.po | 12 +- account_invoice_line_report/i18n/pt_PT.po | 12 +- account_invoice_line_report/i18n/ro.po | 12 +- account_invoice_line_report/i18n/ru.po | 12 +- account_invoice_line_report/i18n/sl.po | 12 +- account_invoice_line_report/i18n/sv.po | 12 +- account_invoice_line_report/i18n/tr.po | 12 +- account_invoice_line_report/i18n/tr_TR.po | 12 +- account_invoice_line_report/i18n/zh_CN.po | 12 +- account_invoice_line_report/i18n/zh_TW.po | 12 +- .../readme/CONTRIBUTORS.rst | 6 + .../readme/DESCRIPTION.rst | 1 + account_invoice_line_report/readme/USAGE.rst | 3 + .../report/account_invoice_report_view.xml | 2 +- .../static/description/index.html | 432 ++++++++++++++++++ 44 files changed, 718 insertions(+), 253 deletions(-) create mode 100644 account_invoice_line_report/readme/CONTRIBUTORS.rst create mode 100644 account_invoice_line_report/readme/DESCRIPTION.rst create mode 100644 account_invoice_line_report/readme/USAGE.rst create mode 100644 account_invoice_line_report/static/description/index.html diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst index 855984dc2..3f961b9e2 100644 --- a/account_invoice_line_report/README.rst +++ b/account_invoice_line_report/README.rst @@ -1,62 +1,85 @@ -.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png - :target: https://www.gnu.org/licenses/agpl - :alt: License: AGPL-3 - =========================== Account Invoice Line Report =========================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github + :target: https://github.com/OCA/account-invoice-reporting/tree/12.0/account_invoice_line_report + :alt: OCA/account-invoice-reporting +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-account_invoice_line_report + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/94/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module creates a new view to manage invoice lines information. -Configuration -============= +**Table of contents** -In order to see invoice line information, you must install sales management -app. +.. contents:: + :local: Usage ===== To use this module, you need to: -#. Go to Accounting > Reporting > Business Intelligence > Invoice Lines - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/94/11.0 +#. Go to Accounting > Reporting > Management > Invoice Lines Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble -, please check there if your issue has already been reported. If you spotted -it first, help us smashing it by providing a detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ -* Carlos Dauden - Tecnativa -* Vicent Cubells - Tecnativa +* `Tecnativa `_: + * Carlos Dauden + * Vicent Cubells -Maintainer ----------- +* Kitti U. + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index 5e30eb01d..4e0045ff0 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -7,7 +7,7 @@ 'summary': 'New view to manage invoice lines information', 'version': '12.0.1.0.0', 'category': 'Account', - 'website': 'http://www.tecnativa.com', + 'website': 'https://github.com/OCA/account-invoice-reporting', 'author': 'Tecnativa, ' 'Odoo Community Association (OCA)', 'license': 'AGPL-3', diff --git a/account_invoice_line_report/i18n/account_invoice_line_report.pot b/account_invoice_line_report/i18n/account_invoice_line_report.pot index 376ac7d38..3de48bb91 100644 --- a/account_invoice_line_report/i18n/account_invoice_line_report.pot +++ b/account_invoice_line_report/i18n/account_invoice_line_report.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,12 +14,12 @@ msgstr "" "Plural-Forms: \n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs." msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "" @@ -30,22 +30,22 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/ar.po b/account_invoice_line_report/i18n/ar.po index faffd6b2b..cf4dc3ae3 100644 --- a/account_invoice_line_report/i18n/ar.po +++ b/account_invoice_line_report/i18n/ar.po @@ -20,7 +20,7 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "خط الفاتورة" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/bs.po b/account_invoice_line_report/i18n/bs.po index 3d0cb560a..f093d2b8c 100644 --- a/account_invoice_line_report/i18n/bs.po +++ b/account_invoice_line_report/i18n/bs.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Stavka fakture" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/ca.po b/account_invoice_line_report/i18n/ca.po index fc716b760..6e93bf64a 100644 --- a/account_invoice_line_report/i18n/ca.po +++ b/account_invoice_line_report/i18n/ca.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Línia factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "Línies de factura" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/cs.po b/account_invoice_line_report/i18n/cs.po index c647dd206..a6761b8f3 100644 --- a/account_invoice_line_report/i18n/cs.po +++ b/account_invoice_line_report/i18n/cs.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Řádek faktury" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index 8cff9453b..a4f988aae 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Rechnungsposition" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "Abrechnungspositionen" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "Partner-Schlagworte" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/en_GB.po b/account_invoice_line_report/i18n/en_GB.po index 8d0e43c15..b316ca94b 100644 --- a/account_invoice_line_report/i18n/en_GB.po +++ b/account_invoice_line_report/i18n/en_GB.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Invoice Line" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/es.po b/account_invoice_line_report/i18n/es.po index 6e92878eb..c9ea040b5 100644 --- a/account_invoice_line_report/i18n/es.po +++ b/account_invoice_line_report/i18n/es.po @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: \n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgstr "" "sus Informes de facturas y el resto, ajustando el análisis a sus necesidades." #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Línea factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "Líneas de factura" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "Etiquetas de empresa" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "Vendedor contiene" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "Con precio" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Sin precio" diff --git a/account_invoice_line_report/i18n/es_CR.po b/account_invoice_line_report/i18n/es_CR.po index 97f1cc95f..b420cd6ef 100644 --- a/account_invoice_line_report/i18n/es_CR.po +++ b/account_invoice_line_report/i18n/es_CR.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Línea de factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/es_EC.po b/account_invoice_line_report/i18n/es_EC.po index c2195b34b..fd27de230 100644 --- a/account_invoice_line_report/i18n/es_EC.po +++ b/account_invoice_line_report/i18n/es_EC.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Detalle de Factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/es_MX.po b/account_invoice_line_report/i18n/es_MX.po index ca473d644..6ae2266d1 100644 --- a/account_invoice_line_report/i18n/es_MX.po +++ b/account_invoice_line_report/i18n/es_MX.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Línea de factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/et.po b/account_invoice_line_report/i18n/et.po index 5645d6c27..bfc0222a1 100644 --- a/account_invoice_line_report/i18n/et.po +++ b/account_invoice_line_report/i18n/et.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Arve rida" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index 4a0fce6b5..ec4efbcce 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Ligne de facture" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "Catégories de partenaires" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/fr_CH.po b/account_invoice_line_report/i18n/fr_CH.po index f1626e5e2..004c9c2dc 100644 --- a/account_invoice_line_report/i18n/fr_CH.po +++ b/account_invoice_line_report/i18n/fr_CH.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Ligne de facture" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po index 6c0d627bb..2817e42d1 100644 --- a/account_invoice_line_report/i18n/hr.po +++ b/account_invoice_line_report/i18n/hr.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Stavka računa" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/hr_HR.po b/account_invoice_line_report/i18n/hr_HR.po index 61a9b5643..9c64d2c8c 100644 --- a/account_invoice_line_report/i18n/hr_HR.po +++ b/account_invoice_line_report/i18n/hr_HR.po @@ -21,7 +21,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "" @@ -40,21 +40,21 @@ msgid "Invoice Lines" msgstr "Stavke računa" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/hu.po b/account_invoice_line_report/i18n/hu.po index 3ce373f77..948d90e46 100644 --- a/account_invoice_line_report/i18n/hu.po +++ b/account_invoice_line_report/i18n/hu.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Számlasor" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/it.po b/account_invoice_line_report/i18n/it.po index e9d399764..703f4255c 100644 --- a/account_invoice_line_report/i18n/it.po +++ b/account_invoice_line_report/i18n/it.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Riga Fattura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "Righe Fattura" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/ja.po b/account_invoice_line_report/i18n/ja.po index c2162da2e..a39b50ded 100644 --- a/account_invoice_line_report/i18n/ja.po +++ b/account_invoice_line_report/i18n/ja.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "請求行" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/lt.po b/account_invoice_line_report/i18n/lt.po index 3d475e644..ba140f508 100644 --- a/account_invoice_line_report/i18n/lt.po +++ b/account_invoice_line_report/i18n/lt.po @@ -20,7 +20,7 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Sąskaitos faktūros eilutė" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/mk.po b/account_invoice_line_report/i18n/mk.po index 7633b3293..4c69c78de 100644 --- a/account_invoice_line_report/i18n/mk.po +++ b/account_invoice_line_report/i18n/mk.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Ставка од фактура" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/mn.po b/account_invoice_line_report/i18n/mn.po index 4ab81e1ca..69fafc340 100644 --- a/account_invoice_line_report/i18n/mn.po +++ b/account_invoice_line_report/i18n/mn.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Нэхэмжлэлийн мөр" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/nb.po b/account_invoice_line_report/i18n/nb.po index 7a3739dc8..a080ef9e8 100644 --- a/account_invoice_line_report/i18n/nb.po +++ b/account_invoice_line_report/i18n/nb.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Fakturalinje" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/nl.po b/account_invoice_line_report/i18n/nl.po index ea7385f85..e36aa5678 100644 --- a/account_invoice_line_report/i18n/nl.po +++ b/account_invoice_line_report/i18n/nl.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Factuurregel" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "Sjablonen factuurregels" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/nl_BE.po b/account_invoice_line_report/i18n/nl_BE.po index 920008ddd..b12929d17 100644 --- a/account_invoice_line_report/i18n/nl_BE.po +++ b/account_invoice_line_report/i18n/nl_BE.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Factuurlijn" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/nl_NL.po b/account_invoice_line_report/i18n/nl_NL.po index 4e66e2f44..0077a6139 100644 --- a/account_invoice_line_report/i18n/nl_NL.po +++ b/account_invoice_line_report/i18n/nl_NL.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Factuurregel" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/pt.po b/account_invoice_line_report/i18n/pt.po index 3b0c643a0..8348eae00 100644 --- a/account_invoice_line_report/i18n/pt.po +++ b/account_invoice_line_report/i18n/pt.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Linha de fatura" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/pt_BR.po b/account_invoice_line_report/i18n/pt_BR.po index 799a2ada2..3054d5694 100644 --- a/account_invoice_line_report/i18n/pt_BR.po +++ b/account_invoice_line_report/i18n/pt_BR.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "LInha da fatura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/pt_PT.po b/account_invoice_line_report/i18n/pt_PT.po index 1a6959816..543954652 100644 --- a/account_invoice_line_report/i18n/pt_PT.po +++ b/account_invoice_line_report/i18n/pt_PT.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Linha da Fatura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/ro.po b/account_invoice_line_report/i18n/ro.po index 3b5023764..e975842af 100644 --- a/account_invoice_line_report/i18n/ro.po +++ b/account_invoice_line_report/i18n/ro.po @@ -20,7 +20,7 @@ msgstr "" "2:1));\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Linie factura" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/ru.po b/account_invoice_line_report/i18n/ru.po index 4ff07165d..aaadfd522 100644 --- a/account_invoice_line_report/i18n/ru.po +++ b/account_invoice_line_report/i18n/ru.po @@ -21,7 +21,7 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Позиция счета" @@ -40,21 +40,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/sl.po b/account_invoice_line_report/i18n/sl.po index 24707e3a0..628756385 100644 --- a/account_invoice_line_report/i18n/sl.po +++ b/account_invoice_line_report/i18n/sl.po @@ -21,7 +21,7 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Postavka računa" @@ -40,21 +40,21 @@ msgid "Invoice Lines" msgstr "Postavke računa" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "Oznake partnerja" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/sv.po b/account_invoice_line_report/i18n/sv.po index dad40a9eb..dd9edeb8e 100644 --- a/account_invoice_line_report/i18n/sv.po +++ b/account_invoice_line_report/i18n/sv.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Fakturarad" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/tr.po b/account_invoice_line_report/i18n/tr.po index 62fd82584..f8ea06a05 100644 --- a/account_invoice_line_report/i18n/tr.po +++ b/account_invoice_line_report/i18n/tr.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Fatura kalemi" @@ -38,21 +38,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/tr_TR.po b/account_invoice_line_report/i18n/tr_TR.po index 1a03584b5..083483a4e 100644 --- a/account_invoice_line_report/i18n/tr_TR.po +++ b/account_invoice_line_report/i18n/tr_TR.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "Fatura hizası" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/zh_CN.po b/account_invoice_line_report/i18n/zh_CN.po index dfaf527fb..508e3a9f0 100644 --- a/account_invoice_line_report/i18n/zh_CN.po +++ b/account_invoice_line_report/i18n/zh_CN.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "发票明细" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/i18n/zh_TW.po b/account_invoice_line_report/i18n/zh_TW.po index e91a9ce82..90a64a2ae 100644 --- a/account_invoice_line_report/i18n/zh_TW.po +++ b/account_invoice_line_report/i18n/zh_TW.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_invoice_line_report -#: model:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report msgid "" "From this report, you can have an overview of the amount invoiced to your " "customers. The search tool can also be used to personalise your Invoices " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" msgstr "發票明細" @@ -39,21 +39,21 @@ msgid "Invoice Lines" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" msgstr "" #. module: account_invoice_line_report -#: model:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" diff --git a/account_invoice_line_report/readme/CONTRIBUTORS.rst b/account_invoice_line_report/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..f40d33f69 --- /dev/null +++ b/account_invoice_line_report/readme/CONTRIBUTORS.rst @@ -0,0 +1,6 @@ +* `Tecnativa `_: + + * Carlos Dauden + * Vicent Cubells + +* Kitti U. diff --git a/account_invoice_line_report/readme/DESCRIPTION.rst b/account_invoice_line_report/readme/DESCRIPTION.rst new file mode 100644 index 000000000..6544c406e --- /dev/null +++ b/account_invoice_line_report/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module creates a new view to manage invoice lines information. diff --git a/account_invoice_line_report/readme/USAGE.rst b/account_invoice_line_report/readme/USAGE.rst new file mode 100644 index 000000000..c9988e0d8 --- /dev/null +++ b/account_invoice_line_report/readme/USAGE.rst @@ -0,0 +1,3 @@ +To use this module, you need to: + +#. Go to Accounting > Reporting > Management > Invoice Lines diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index 306a57983..e72c8a134 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -45,6 +45,6 @@ From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs. - + diff --git a/account_invoice_line_report/static/description/index.html b/account_invoice_line_report/static/description/index.html new file mode 100644 index 000000000..88ae01510 --- /dev/null +++ b/account_invoice_line_report/static/description/index.html @@ -0,0 +1,432 @@ + + + + + + +Account Invoice Line Report + + + +
+

Account Invoice Line Report

+ + +

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

+

This module creates a new view to manage invoice lines information.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Accounting > Reporting > Management > Invoice Lines
  2. +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

This module is part of the OCA/account-invoice-reporting project on GitHub.

+

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

+
+
+
+ + From a3c226b93bbe97a92ba04877292bdf2916013d97 Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Thu, 9 Jan 2020 15:19:27 +0000 Subject: [PATCH 05/26] Translated using Weblate (German) Currently translated at 42.9% (3 of 7 strings) Translation: account-invoice-reporting-12.0/account-invoice-reporting-12.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-account_invoice_line_report/de/ --- account_invoice_line_report/i18n/de.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index a4f988aae..48b809d70 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -10,14 +10,15 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-09 02:58+0000\n" -"PO-Revision-Date: 2017-06-09 02:58+0000\n" -"Last-Translator: Rudolf Schnapka , 2017\n" +"PO-Revision-Date: 2020-01-09 18:13+0000\n" +"Last-Translator: Maria Sparenberg \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -36,7 +37,7 @@ msgstr "Rechnungsposition" #: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report #: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report msgid "Invoice Lines" -msgstr "Abrechnungspositionen" +msgstr "Rechnungspositionen" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search From e2d0e66d0dcb26a28cae25d1ae78068012183f28 Mon Sep 17 00:00:00 2001 From: Bole Date: Thu, 5 Mar 2020 13:34:19 +0000 Subject: [PATCH 06/26] Translated using Weblate (Croatian) Currently translated at 85.7% (6 of 7 strings) Translation: account-invoice-reporting-12.0/account-invoice-reporting-12.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-account_invoice_line_report/hr/ --- account_invoice_line_report/i18n/hr.po | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po index 2817e42d1..261d19771 100644 --- a/account_invoice_line_report/i18n/hr.po +++ b/account_invoice_line_report/i18n/hr.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-09 02:58+0000\n" -"PO-Revision-Date: 2017-06-09 02:58+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2020-03-05 16:13+0000\n" +"Last-Translator: Bole \n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10\n" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -36,24 +37,24 @@ msgstr "Stavka računa" #: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report #: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report msgid "Invoice Lines" -msgstr "" +msgstr "Stavke računa" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Partner Tags" -msgstr "" +msgstr "Oznake partnera" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Vendor contains" -msgstr "" +msgstr "Dobavljač sadrži" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" -msgstr "" +msgstr "Sa cijenom" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" -msgstr "" +msgstr "Bez cijene" From 3486fb8b2221a94635caf5d6a5649b08efaaefc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marques?= Date: Mon, 5 Oct 2020 07:13:44 +0100 Subject: [PATCH 07/26] [IMP] account_invoice_line_report: black, isort, prettier --- account_invoice_line_report/__manifest__.py | 25 +++----- .../report/account_invoice_report_view.xml | 64 ++++++++++++------- 2 files changed, 51 insertions(+), 38 deletions(-) diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index 4e0045ff0..a820a7f62 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -3,19 +3,14 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { - 'name': 'Account Invoice Line Report', - 'summary': 'New view to manage invoice lines information', - 'version': '12.0.1.0.0', - 'category': 'Account', - 'website': 'https://github.com/OCA/account-invoice-reporting', - 'author': 'Tecnativa, ' - 'Odoo Community Association (OCA)', - 'license': 'AGPL-3', - 'depends': [ - 'account', - ], - 'data': [ - 'report/account_invoice_report_view.xml', - ], - 'installable': True, + "name": "Account Invoice Line Report", + "summary": "New view to manage invoice lines information", + "version": "12.0.1.0.0", + "category": "Account", + "website": "https://github.com/OCA/account-invoice-reporting", + "author": "Tecnativa, " "Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": ["account",], + "data": ["report/account_invoice_report_view.xml",], + "installable": True, } diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index e72c8a134..c58815c1a 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -1,50 +1,68 @@ - + - account.invoice.report.tree.info account.invoice.report - - - - - - - + + + + + + + - account.invoice.report - + - - - + + + - - - + + + - Invoice Lines account.invoice.report form tree,pivot,graph - - From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs. + + From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs. - - - + From d5ffea4fdab73672e99a5d3a4d970f3e2aa9cd55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marques?= Date: Mon, 5 Oct 2020 07:19:56 +0100 Subject: [PATCH 08/26] [MIG] account_invoice_line_report: Migration to 13.0 [UPD] Update account_invoice_line_report.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-invoice-reporting-13.0/account-invoice-reporting-13.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-account_invoice_line_report/ --- account_invoice_line_report/README.rst | 18 +++++++------ account_invoice_line_report/__manifest__.py | 11 ++++---- .../i18n/account_invoice_line_report.pot | 22 ++++++---------- account_invoice_line_report/i18n/ar.po | 10 -------- account_invoice_line_report/i18n/bs.po | 10 -------- account_invoice_line_report/i18n/ca.po | 10 -------- account_invoice_line_report/i18n/cs.po | 10 -------- account_invoice_line_report/i18n/de.po | 13 +++------- account_invoice_line_report/i18n/en_GB.po | 10 -------- account_invoice_line_report/i18n/es.po | 16 +++++------- account_invoice_line_report/i18n/es_CR.po | 10 -------- account_invoice_line_report/i18n/es_EC.po | 10 -------- account_invoice_line_report/i18n/es_MX.po | 10 -------- account_invoice_line_report/i18n/et.po | 10 -------- account_invoice_line_report/i18n/fr.po | 13 +++------- account_invoice_line_report/i18n/fr_CH.po | 10 -------- account_invoice_line_report/i18n/hr.po | 20 ++++++--------- account_invoice_line_report/i18n/hr_HR.po | 10 -------- account_invoice_line_report/i18n/hu.po | 10 -------- account_invoice_line_report/i18n/it.po | 10 -------- account_invoice_line_report/i18n/ja.po | 10 -------- account_invoice_line_report/i18n/lt.po | 10 -------- account_invoice_line_report/i18n/mk.po | 10 -------- account_invoice_line_report/i18n/mn.po | 10 -------- account_invoice_line_report/i18n/nb.po | 10 -------- account_invoice_line_report/i18n/nl.po | 10 -------- account_invoice_line_report/i18n/nl_BE.po | 10 -------- account_invoice_line_report/i18n/nl_NL.po | 10 -------- account_invoice_line_report/i18n/pt.po | 10 -------- account_invoice_line_report/i18n/pt_BR.po | 10 -------- account_invoice_line_report/i18n/pt_PT.po | 10 -------- account_invoice_line_report/i18n/ro.po | 10 -------- account_invoice_line_report/i18n/ru.po | 10 -------- account_invoice_line_report/i18n/sl.po | 13 +++------- account_invoice_line_report/i18n/sv.po | 10 -------- account_invoice_line_report/i18n/tr.po | 10 -------- account_invoice_line_report/i18n/tr_TR.po | 10 -------- account_invoice_line_report/i18n/zh_CN.po | 10 -------- account_invoice_line_report/i18n/zh_TW.po | 10 -------- .../readme/CONTRIBUTORS.rst | 5 ++-- account_invoice_line_report/readme/USAGE.rst | 3 ++- .../report/account_invoice_report_view.xml | 25 +++++-------------- .../static/description/index.html | 14 ++++++----- 43 files changed, 65 insertions(+), 418 deletions(-) diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst index 3f961b9e2..fda9fd22c 100644 --- a/account_invoice_line_report/README.rst +++ b/account_invoice_line_report/README.rst @@ -14,13 +14,13 @@ Account Invoice Line Report :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github - :target: https://github.com/OCA/account-invoice-reporting/tree/12.0/account_invoice_line_report + :target: https://github.com/OCA/account-invoice-reporting/tree/13.0/account_invoice_line_report :alt: OCA/account-invoice-reporting .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-account_invoice_line_report + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-account_invoice_line_report :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/94/12.0 + :target: https://runbot.odoo-community.org/runbot/94/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -37,7 +37,8 @@ Usage To use this module, you need to: -#. Go to Accounting > Reporting > Management > Invoice Lines +#. Have the "Show Full Accounting Features" option activated for your user. +#. Go to Invoicing > Reporting > Management > Invoice Lines Bug Tracker =========== @@ -45,7 +46,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -62,8 +63,9 @@ Contributors * `Tecnativa `_: - * Carlos Dauden - * Vicent Cubells + * Carlos Dauden + * Vicent Cubells + * João Marques * Kitti U. @@ -80,6 +82,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index a820a7f62..1a9c221dd 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -1,16 +1,17 @@ -# Copyright 2017 Carlos Dauden - Tecnativa -# Copyright 2018 Vicent Cubells - Tecnativa +# Copyright 2017 Tecnativa - Carlos Dauden +# Copyright 2018 Tecnativa - Vicent Cubells +# Copyright 2020 Tecnativa - João Marques # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Account Invoice Line Report", "summary": "New view to manage invoice lines information", - "version": "12.0.1.0.0", + "version": "13.0.1.0.0", "category": "Account", "website": "https://github.com/OCA/account-invoice-reporting", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", - "depends": ["account",], - "data": ["report/account_invoice_report_view.xml",], + "depends": ["account"], + "data": ["report/account_invoice_report_view.xml"], "installable": True, } diff --git a/account_invoice_line_report/i18n/account_invoice_line_report.pot b/account_invoice_line_report/i18n/account_invoice_line_report.pot index 3de48bb91..3f16d05a2 100644 --- a/account_invoice_line_report/i18n/account_invoice_line_report.pot +++ b/account_invoice_line_report/i18n/account_invoice_line_report.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_invoice_line_report +# * account_invoice_line_report # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" +"Project-Id-Version: Odoo Server 13.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" +"Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,10 @@ msgstr "" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report -msgid "From this report, you can have an overview of the amount invoiced to your customers. The search tool can also be used to personalise your Invoices reports and so, match this analysis to your needs." +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." msgstr "" #. module: account_invoice_line_report @@ -29,16 +32,6 @@ msgstr "" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -48,4 +41,3 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" - diff --git a/account_invoice_line_report/i18n/ar.po b/account_invoice_line_report/i18n/ar.po index cf4dc3ae3..bda48fd34 100644 --- a/account_invoice_line_report/i18n/ar.po +++ b/account_invoice_line_report/i18n/ar.po @@ -38,16 +38,6 @@ msgstr "خط الفاتورة" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/bs.po b/account_invoice_line_report/i18n/bs.po index f093d2b8c..381755d99 100644 --- a/account_invoice_line_report/i18n/bs.po +++ b/account_invoice_line_report/i18n/bs.po @@ -38,16 +38,6 @@ msgstr "Stavka fakture" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/ca.po b/account_invoice_line_report/i18n/ca.po index 6e93bf64a..d28b9adfe 100644 --- a/account_invoice_line_report/i18n/ca.po +++ b/account_invoice_line_report/i18n/ca.po @@ -38,16 +38,6 @@ msgstr "Línia factura" msgid "Invoice Lines" msgstr "Línies de factura" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/cs.po b/account_invoice_line_report/i18n/cs.po index a6761b8f3..f7dbc0185 100644 --- a/account_invoice_line_report/i18n/cs.po +++ b/account_invoice_line_report/i18n/cs.po @@ -37,16 +37,6 @@ msgstr "Řádek faktury" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index 48b809d70..1ebdca56c 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -39,16 +39,6 @@ msgstr "Rechnungsposition" msgid "Invoice Lines" msgstr "Rechnungspositionen" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "Partner-Schlagworte" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -58,3 +48,6 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" + +#~ msgid "Partner Tags" +#~ msgstr "Partner-Schlagworte" diff --git a/account_invoice_line_report/i18n/en_GB.po b/account_invoice_line_report/i18n/en_GB.po index b316ca94b..111d5d637 100644 --- a/account_invoice_line_report/i18n/en_GB.po +++ b/account_invoice_line_report/i18n/en_GB.po @@ -38,16 +38,6 @@ msgstr "Invoice Line" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/es.po b/account_invoice_line_report/i18n/es.po index c9ea040b5..12b49ab0c 100644 --- a/account_invoice_line_report/i18n/es.po +++ b/account_invoice_line_report/i18n/es.po @@ -38,16 +38,6 @@ msgstr "Línea factura" msgid "Invoice Lines" msgstr "Líneas de factura" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "Etiquetas de empresa" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "Vendedor contiene" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -57,3 +47,9 @@ msgstr "Con precio" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Sin precio" + +#~ msgid "Partner Tags" +#~ msgstr "Etiquetas de empresa" + +#~ msgid "Vendor contains" +#~ msgstr "Vendedor contiene" diff --git a/account_invoice_line_report/i18n/es_CR.po b/account_invoice_line_report/i18n/es_CR.po index b420cd6ef..83b5b9ee1 100644 --- a/account_invoice_line_report/i18n/es_CR.po +++ b/account_invoice_line_report/i18n/es_CR.po @@ -38,16 +38,6 @@ msgstr "Línea de factura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/es_EC.po b/account_invoice_line_report/i18n/es_EC.po index fd27de230..7f9ddc367 100644 --- a/account_invoice_line_report/i18n/es_EC.po +++ b/account_invoice_line_report/i18n/es_EC.po @@ -38,16 +38,6 @@ msgstr "Detalle de Factura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/es_MX.po b/account_invoice_line_report/i18n/es_MX.po index 6ae2266d1..207079867 100644 --- a/account_invoice_line_report/i18n/es_MX.po +++ b/account_invoice_line_report/i18n/es_MX.po @@ -38,16 +38,6 @@ msgstr "Línea de factura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/et.po b/account_invoice_line_report/i18n/et.po index bfc0222a1..7f288c608 100644 --- a/account_invoice_line_report/i18n/et.po +++ b/account_invoice_line_report/i18n/et.po @@ -37,16 +37,6 @@ msgstr "Arve rida" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index ec4efbcce..c914bae58 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -38,16 +38,6 @@ msgstr "Ligne de facture" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "Catégories de partenaires" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -57,3 +47,6 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" + +#~ msgid "Partner Tags" +#~ msgstr "Catégories de partenaires" diff --git a/account_invoice_line_report/i18n/fr_CH.po b/account_invoice_line_report/i18n/fr_CH.po index 004c9c2dc..911124987 100644 --- a/account_invoice_line_report/i18n/fr_CH.po +++ b/account_invoice_line_report/i18n/fr_CH.po @@ -38,16 +38,6 @@ msgstr "Ligne de facture" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po index 261d19771..e1edfbae8 100644 --- a/account_invoice_line_report/i18n/hr.po +++ b/account_invoice_line_report/i18n/hr.po @@ -16,8 +16,8 @@ msgstr "" "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" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.10\n" #. module: account_invoice_line_report @@ -39,16 +39,6 @@ msgstr "Stavka računa" msgid "Invoice Lines" msgstr "Stavke računa" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "Oznake partnera" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "Dobavljač sadrži" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -58,3 +48,9 @@ msgstr "Sa cijenom" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Bez cijene" + +#~ msgid "Partner Tags" +#~ msgstr "Oznake partnera" + +#~ msgid "Vendor contains" +#~ msgstr "Dobavljač sadrži" diff --git a/account_invoice_line_report/i18n/hr_HR.po b/account_invoice_line_report/i18n/hr_HR.po index 9c64d2c8c..b3c23d832 100644 --- a/account_invoice_line_report/i18n/hr_HR.po +++ b/account_invoice_line_report/i18n/hr_HR.po @@ -39,16 +39,6 @@ msgstr "" msgid "Invoice Lines" msgstr "Stavke računa" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/hu.po b/account_invoice_line_report/i18n/hu.po index 948d90e46..782576592 100644 --- a/account_invoice_line_report/i18n/hu.po +++ b/account_invoice_line_report/i18n/hu.po @@ -37,16 +37,6 @@ msgstr "Számlasor" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/it.po b/account_invoice_line_report/i18n/it.po index 703f4255c..2ebe5fff4 100644 --- a/account_invoice_line_report/i18n/it.po +++ b/account_invoice_line_report/i18n/it.po @@ -38,16 +38,6 @@ msgstr "Riga Fattura" msgid "Invoice Lines" msgstr "Righe Fattura" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/ja.po b/account_invoice_line_report/i18n/ja.po index a39b50ded..31ad63c67 100644 --- a/account_invoice_line_report/i18n/ja.po +++ b/account_invoice_line_report/i18n/ja.po @@ -37,16 +37,6 @@ msgstr "請求行" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/lt.po b/account_invoice_line_report/i18n/lt.po index ba140f508..ebdde930d 100644 --- a/account_invoice_line_report/i18n/lt.po +++ b/account_invoice_line_report/i18n/lt.po @@ -38,16 +38,6 @@ msgstr "Sąskaitos faktūros eilutė" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/mk.po b/account_invoice_line_report/i18n/mk.po index 4c69c78de..383839d75 100644 --- a/account_invoice_line_report/i18n/mk.po +++ b/account_invoice_line_report/i18n/mk.po @@ -37,16 +37,6 @@ msgstr "Ставка од фактура" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/mn.po b/account_invoice_line_report/i18n/mn.po index 69fafc340..1c4135251 100644 --- a/account_invoice_line_report/i18n/mn.po +++ b/account_invoice_line_report/i18n/mn.po @@ -37,16 +37,6 @@ msgstr "Нэхэмжлэлийн мөр" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/nb.po b/account_invoice_line_report/i18n/nb.po index a080ef9e8..4999d2e72 100644 --- a/account_invoice_line_report/i18n/nb.po +++ b/account_invoice_line_report/i18n/nb.po @@ -38,16 +38,6 @@ msgstr "Fakturalinje" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/nl.po b/account_invoice_line_report/i18n/nl.po index e36aa5678..17615b169 100644 --- a/account_invoice_line_report/i18n/nl.po +++ b/account_invoice_line_report/i18n/nl.po @@ -37,16 +37,6 @@ msgstr "Factuurregel" msgid "Invoice Lines" msgstr "Sjablonen factuurregels" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/nl_BE.po b/account_invoice_line_report/i18n/nl_BE.po index b12929d17..ac4f62478 100644 --- a/account_invoice_line_report/i18n/nl_BE.po +++ b/account_invoice_line_report/i18n/nl_BE.po @@ -38,16 +38,6 @@ msgstr "Factuurlijn" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/nl_NL.po b/account_invoice_line_report/i18n/nl_NL.po index 0077a6139..1b4b0890a 100644 --- a/account_invoice_line_report/i18n/nl_NL.po +++ b/account_invoice_line_report/i18n/nl_NL.po @@ -38,16 +38,6 @@ msgstr "Factuurregel" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/pt.po b/account_invoice_line_report/i18n/pt.po index 8348eae00..3d1d4e8d2 100644 --- a/account_invoice_line_report/i18n/pt.po +++ b/account_invoice_line_report/i18n/pt.po @@ -37,16 +37,6 @@ msgstr "Linha de fatura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/pt_BR.po b/account_invoice_line_report/i18n/pt_BR.po index 3054d5694..58e0dc774 100644 --- a/account_invoice_line_report/i18n/pt_BR.po +++ b/account_invoice_line_report/i18n/pt_BR.po @@ -38,16 +38,6 @@ msgstr "LInha da fatura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/pt_PT.po b/account_invoice_line_report/i18n/pt_PT.po index 543954652..0fc5abf43 100644 --- a/account_invoice_line_report/i18n/pt_PT.po +++ b/account_invoice_line_report/i18n/pt_PT.po @@ -38,16 +38,6 @@ msgstr "Linha da Fatura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/ro.po b/account_invoice_line_report/i18n/ro.po index e975842af..174bc4a34 100644 --- a/account_invoice_line_report/i18n/ro.po +++ b/account_invoice_line_report/i18n/ro.po @@ -38,16 +38,6 @@ msgstr "Linie factura" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/ru.po b/account_invoice_line_report/i18n/ru.po index aaadfd522..024f22b98 100644 --- a/account_invoice_line_report/i18n/ru.po +++ b/account_invoice_line_report/i18n/ru.po @@ -39,16 +39,6 @@ msgstr "Позиция счета" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/sl.po b/account_invoice_line_report/i18n/sl.po index 628756385..449f0e3c0 100644 --- a/account_invoice_line_report/i18n/sl.po +++ b/account_invoice_line_report/i18n/sl.po @@ -39,16 +39,6 @@ msgstr "Postavka računa" msgid "Invoice Lines" msgstr "Postavke računa" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "Oznake partnerja" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" @@ -58,3 +48,6 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" + +#~ msgid "Partner Tags" +#~ msgstr "Oznake partnerja" diff --git a/account_invoice_line_report/i18n/sv.po b/account_invoice_line_report/i18n/sv.po index dd9edeb8e..dd13b6f5c 100644 --- a/account_invoice_line_report/i18n/sv.po +++ b/account_invoice_line_report/i18n/sv.po @@ -37,16 +37,6 @@ msgstr "Fakturarad" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/tr.po b/account_invoice_line_report/i18n/tr.po index f8ea06a05..d38a00fa9 100644 --- a/account_invoice_line_report/i18n/tr.po +++ b/account_invoice_line_report/i18n/tr.po @@ -37,16 +37,6 @@ msgstr "Fatura kalemi" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/tr_TR.po b/account_invoice_line_report/i18n/tr_TR.po index 083483a4e..59f55a7ef 100644 --- a/account_invoice_line_report/i18n/tr_TR.po +++ b/account_invoice_line_report/i18n/tr_TR.po @@ -38,16 +38,6 @@ msgstr "Fatura hizası" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/zh_CN.po b/account_invoice_line_report/i18n/zh_CN.po index 508e3a9f0..1687327d0 100644 --- a/account_invoice_line_report/i18n/zh_CN.po +++ b/account_invoice_line_report/i18n/zh_CN.po @@ -38,16 +38,6 @@ msgstr "发票明细" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/i18n/zh_TW.po b/account_invoice_line_report/i18n/zh_TW.po index 90a64a2ae..222bf1110 100644 --- a/account_invoice_line_report/i18n/zh_TW.po +++ b/account_invoice_line_report/i18n/zh_TW.po @@ -38,16 +38,6 @@ msgstr "發票明細" msgid "Invoice Lines" msgstr "" -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Partner Tags" -msgstr "" - -#. module: account_invoice_line_report -#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search -msgid "Vendor contains" -msgstr "" - #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" diff --git a/account_invoice_line_report/readme/CONTRIBUTORS.rst b/account_invoice_line_report/readme/CONTRIBUTORS.rst index f40d33f69..ae73bc074 100644 --- a/account_invoice_line_report/readme/CONTRIBUTORS.rst +++ b/account_invoice_line_report/readme/CONTRIBUTORS.rst @@ -1,6 +1,7 @@ * `Tecnativa `_: - * Carlos Dauden - * Vicent Cubells + * Carlos Dauden + * Vicent Cubells + * João Marques * Kitti U. diff --git a/account_invoice_line_report/readme/USAGE.rst b/account_invoice_line_report/readme/USAGE.rst index c9988e0d8..d24d67826 100644 --- a/account_invoice_line_report/readme/USAGE.rst +++ b/account_invoice_line_report/readme/USAGE.rst @@ -1,3 +1,4 @@ To use this module, you need to: -#. Go to Accounting > Reporting > Management > Invoice Lines +#. Have the "Show Full Accounting Features" option activated for your user. +#. Go to Invoicing > Reporting > Management > Invoice Lines diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index c58815c1a..fe7701347 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -1,5 +1,6 @@ - @@ -8,11 +9,11 @@ - + - + - + @@ -21,20 +22,7 @@ account.invoice.report - - - - - - + Invoice Lines account.invoice.report - form tree,pivot,graph Account Invoice Line Report !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

This module creates a new view to manage invoice lines information.

Table of contents

@@ -386,7 +386,8 @@

Account Invoice Line Report

Usage

To use this module, you need to:

    -
  1. Go to Accounting > Reporting > Management > Invoice Lines
  2. +
  3. Have the “Show Full Accounting Features” option activated for your user.
  4. +
  5. Go to Invoicing > Reporting > Management > Invoice Lines
@@ -394,7 +395,7 @@

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

+feedback.

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

@@ -409,8 +410,9 @@

Authors

Contributors

From 146a7603efe5e04f9863f3c5c5788cdcd030cc3d Mon Sep 17 00:00:00 2001 From: xavier Date: Wed, 10 Mar 2021 17:30:13 +0100 Subject: [PATCH 09/26] [MIG] account_invoice_line_report: Migration to 14.0 [UPD] Update account_invoice_line_report.pot [UPD] README.rst --- account_invoice_line_report/README.rst | 10 +++++----- account_invoice_line_report/__manifest__.py | 2 +- .../i18n/account_invoice_line_report.pot | 2 +- .../report/account_invoice_report_view.xml | 3 ++- .../static/description/index.html | 6 +++--- 5 files changed, 12 insertions(+), 11 deletions(-) diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst index fda9fd22c..fe87a3ca5 100644 --- a/account_invoice_line_report/README.rst +++ b/account_invoice_line_report/README.rst @@ -14,13 +14,13 @@ Account Invoice Line Report :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github - :target: https://github.com/OCA/account-invoice-reporting/tree/13.0/account_invoice_line_report + :target: https://github.com/OCA/account-invoice-reporting/tree/14.0/account_invoice_line_report :alt: OCA/account-invoice-reporting .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-account_invoice_line_report + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/94/13.0 + :target: https://runbot.odoo-community.org/runbot/94/14.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -46,7 +46,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -82,6 +82,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index 1a9c221dd..8ea5b6a7a 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Account Invoice Line Report", "summary": "New view to manage invoice lines information", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "category": "Account", "website": "https://github.com/OCA/account-invoice-reporting", "author": "Tecnativa, " "Odoo Community Association (OCA)", diff --git a/account_invoice_line_report/i18n/account_invoice_line_report.pot b/account_invoice_line_report/i18n/account_invoice_line_report.pot index 3f16d05a2..64537b7d2 100644 --- a/account_invoice_line_report/i18n/account_invoice_line_report.pot +++ b/account_invoice_line_report/i18n/account_invoice_line_report.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 13.0\n" +"Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index fe7701347..b096e0d54 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -8,13 +8,14 @@ account.invoice.report + - +
diff --git a/account_invoice_line_report/static/description/index.html b/account_invoice_line_report/static/description/index.html index ebd002d1b..26ebedc63 100644 --- a/account_invoice_line_report/static/description/index.html +++ b/account_invoice_line_report/static/description/index.html @@ -367,7 +367,7 @@

Account Invoice Line Report

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

This module creates a new view to manage invoice lines information.

Table of contents

@@ -395,7 +395,7 @@

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

+feedback.

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

@@ -425,7 +425,7 @@

Maintainers

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

-

This module is part of the OCA/account-invoice-reporting project on GitHub.

+

This module is part of the OCA/account-invoice-reporting project on GitHub.

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

From afa5cb5652d4123d9c1f5c6a8cf107e8ffa3e597 Mon Sep 17 00:00:00 2001 From: Yves Le Doeuff Date: Thu, 25 Mar 2021 17:02:39 +0000 Subject: [PATCH 10/26] Translated using Weblate (French) Currently translated at 100.0% (5 of 5 strings) Translation: account-invoice-reporting-14.0/account-invoice-reporting-14.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report/fr/ --- account_invoice_line_report/i18n/fr.po | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index c914bae58..5ecc2a048 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -10,14 +10,15 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-09 02:58+0000\n" -"PO-Revision-Date: 2017-06-09 02:58+0000\n" -"Last-Translator: Guewen Baconnier , 2017\n" +"PO-Revision-Date: 2021-03-25 19:46+0000\n" +"Last-Translator: Yves Le Doeuff \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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -26,6 +27,10 @@ msgid "" "customers. The search tool can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"A partir de ce rapport, vous pouvez avoir un aperçu du montant facturé à vos " +"clients. L'outil de recherche peut également être utilisé pour personnaliser " +"vos rapports de factures et ainsi faire correspondre cette analyse à vos " +"besoins." #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info @@ -36,17 +41,17 @@ msgstr "Ligne de facture" #: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report #: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report msgid "Invoice Lines" -msgstr "" +msgstr "Lignes de factures" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" -msgstr "" +msgstr "Avec Prix" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" -msgstr "" +msgstr "Sans Prix" #~ msgid "Partner Tags" #~ msgstr "Catégories de partenaires" From 1a35fa46b97d3dd3cac2e14a9b350d6bdd56e83b Mon Sep 17 00:00:00 2001 From: Yves Le Doeuff Date: Thu, 8 Apr 2021 20:45:24 +0000 Subject: [PATCH 11/26] Translated using Weblate (French) Currently translated at 100.0% (5 of 5 strings) Translation: account-invoice-reporting-14.0/account-invoice-reporting-14.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report/fr/ --- account_invoice_line_report/i18n/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index 5ecc2a048..5e2cc5fa4 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-09 02:58+0000\n" -"PO-Revision-Date: 2021-03-25 19:46+0000\n" +"PO-Revision-Date: 2021-04-08 22:47+0000\n" "Last-Translator: Yves Le Doeuff \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" @@ -41,7 +41,7 @@ msgstr "Ligne de facture" #: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report #: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report msgid "Invoice Lines" -msgstr "Lignes de factures" +msgstr "Lignes de facture" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search From 2245d38523fe8207d675fef7fe05d78f10cf16b2 Mon Sep 17 00:00:00 2001 From: Yves Le Doeuff Date: Sat, 10 Apr 2021 13:37:36 +0000 Subject: [PATCH 12/26] Added translation using Weblate (French (France)) --- account_invoice_line_report/i18n/fr_FR.po | 44 +++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 account_invoice_line_report/i18n/fr_FR.po diff --git a/account_invoice_line_report/i18n/fr_FR.po b/account_invoice_line_report/i18n/fr_FR.po new file mode 100644 index 000000000..177f6218d --- /dev/null +++ b/account_invoice_line_report/i18n/fr_FR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_line_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\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_invoice_line_report +#: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customers. The search tool can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account_invoice_line_report +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info +msgid "Invoice Line" +msgstr "" + +#. module: account_invoice_line_report +#: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report +#: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report +msgid "Invoice Lines" +msgstr "" + +#. module: account_invoice_line_report +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "With Price" +msgstr "" + +#. module: account_invoice_line_report +#: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search +msgid "Without Price" +msgstr "" From d7f091295aec4696ff3e67a4d92ced5a0ae4bc46 Mon Sep 17 00:00:00 2001 From: Yves Le Doeuff Date: Sat, 10 Apr 2021 13:38:09 +0000 Subject: [PATCH 13/26] Translated using Weblate (French (France)) Currently translated at 100.0% (5 of 5 strings) Translation: account-invoice-reporting-14.0/account-invoice-reporting-14.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report/fr_FR/ --- account_invoice_line_report/i18n/fr_FR.po | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/account_invoice_line_report/i18n/fr_FR.po b/account_invoice_line_report/i18n/fr_FR.po index 177f6218d..2e7509db1 100644 --- a/account_invoice_line_report/i18n/fr_FR.po +++ b/account_invoice_line_report/i18n/fr_FR.po @@ -6,13 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2021-04-10 15:46+0000\n" +"Last-Translator: Yves Le Doeuff \n" "Language-Team: none\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" +"X-Generator: Weblate 4.3.2\n" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -21,24 +23,27 @@ msgid "" "customers. The search tool can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"À partir de ce rapport, vous avez un aperçu du montant facturé à vos " +"clients. L'outil de recherche peut aussi être utilisé pour personnaliser " +"l'analyse des factures, et ainsi mieux correspondre à vos besoins." #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info msgid "Invoice Line" -msgstr "" +msgstr "Ligne de facture" #. module: account_invoice_line_report #: model:ir.actions.act_window,name:account_invoice_line_report.action_account_invoice_line_report #: model:ir.ui.menu,name:account_invoice_line_report.menu_action_account_invoice_line_report msgid "Invoice Lines" -msgstr "" +msgstr "Lignes de facture" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" -msgstr "" +msgstr "Avec Prix" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" -msgstr "" +msgstr "Sans Prix" From 5ce7da9f05f50821ebbb2a0ff2e375f631843bf3 Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Wed, 11 May 2022 10:27:41 +0000 Subject: [PATCH 14/26] Translated using Weblate (German) Currently translated at 100.0% (5 of 5 strings) Translation: account-invoice-reporting-14.0/account-invoice-reporting-14.0-account_invoice_line_report Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report/de/ --- account_invoice_line_report/i18n/de.po | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index 1ebdca56c..60f519063 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-09 02:58+0000\n" -"PO-Revision-Date: 2020-01-09 18:13+0000\n" +"PO-Revision-Date: 2022-05-11 13:05+0000\n" "Last-Translator: Maria Sparenberg \n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "Language: de\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_invoice_line_report #: model_terms:ir.actions.act_window,help:account_invoice_line_report.action_account_invoice_line_report @@ -27,6 +27,10 @@ msgid "" "customers. The search tool can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Mithilfe dieses Reports erhält man einen Überblick über die den Kunden in " +"Rechnung gestellten Beträge. Mit dem Suchwerkzeug können die " +"Rechnungsreports auch personalisiert werden, um die Auswertung den " +"Bedürfnissen des Unternehmens anzupassen." #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_invoice_report_tree_info @@ -42,12 +46,12 @@ msgstr "Rechnungspositionen" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "With Price" -msgstr "" +msgstr "Mit Preis" #. module: account_invoice_line_report #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" -msgstr "" +msgstr "Ohne Preis" #~ msgid "Partner Tags" #~ msgstr "Partner-Schlagworte" From 7d154fa6ce8543f7615a9a91ef39da7397145197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Tue, 22 Nov 2022 16:23:31 +0100 Subject: [PATCH 15/26] [MIG] account_invoice_line_report: Migration to 15.0 TT39025 --- account_invoice_line_report/README.rst | 10 +++++----- account_invoice_line_report/__manifest__.py | 2 +- account_invoice_line_report/i18n/de.po | 3 --- account_invoice_line_report/i18n/es.po | 6 ------ account_invoice_line_report/i18n/fr.po | 3 --- account_invoice_line_report/i18n/hr.po | 6 ------ account_invoice_line_report/i18n/sl.po | 3 --- .../report/account_invoice_report_view.xml | 2 +- .../static/description/index.html | 8 ++++---- 9 files changed, 11 insertions(+), 32 deletions(-) diff --git a/account_invoice_line_report/README.rst b/account_invoice_line_report/README.rst index fe87a3ca5..38c2d0fc4 100644 --- a/account_invoice_line_report/README.rst +++ b/account_invoice_line_report/README.rst @@ -14,13 +14,13 @@ Account Invoice Line Report :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github - :target: https://github.com/OCA/account-invoice-reporting/tree/14.0/account_invoice_line_report + :target: https://github.com/OCA/account-invoice-reporting/tree/15.0/account_invoice_line_report :alt: OCA/account-invoice-reporting .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-invoice-reporting-14-0/account-invoice-reporting-14-0-account_invoice_line_report + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-15-0/account-invoice-reporting-15-0-account_invoice_line_report :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/94/14.0 + :target: https://runbot.odoo-community.org/runbot/94/15.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -46,7 +46,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -82,6 +82,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_line_report/__manifest__.py b/account_invoice_line_report/__manifest__.py index 8ea5b6a7a..ceb0a075e 100644 --- a/account_invoice_line_report/__manifest__.py +++ b/account_invoice_line_report/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Account Invoice Line Report", "summary": "New view to manage invoice lines information", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "category": "Account", "website": "https://github.com/OCA/account-invoice-reporting", "author": "Tecnativa, " "Odoo Community Association (OCA)", diff --git a/account_invoice_line_report/i18n/de.po b/account_invoice_line_report/i18n/de.po index 60f519063..acd313019 100644 --- a/account_invoice_line_report/i18n/de.po +++ b/account_invoice_line_report/i18n/de.po @@ -52,6 +52,3 @@ msgstr "Mit Preis" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Ohne Preis" - -#~ msgid "Partner Tags" -#~ msgstr "Partner-Schlagworte" diff --git a/account_invoice_line_report/i18n/es.po b/account_invoice_line_report/i18n/es.po index 12b49ab0c..ee330e71d 100644 --- a/account_invoice_line_report/i18n/es.po +++ b/account_invoice_line_report/i18n/es.po @@ -47,9 +47,3 @@ msgstr "Con precio" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Sin precio" - -#~ msgid "Partner Tags" -#~ msgstr "Etiquetas de empresa" - -#~ msgid "Vendor contains" -#~ msgstr "Vendedor contiene" diff --git a/account_invoice_line_report/i18n/fr.po b/account_invoice_line_report/i18n/fr.po index 5e2cc5fa4..d6690fed5 100644 --- a/account_invoice_line_report/i18n/fr.po +++ b/account_invoice_line_report/i18n/fr.po @@ -52,6 +52,3 @@ msgstr "Avec Prix" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Sans Prix" - -#~ msgid "Partner Tags" -#~ msgstr "Catégories de partenaires" diff --git a/account_invoice_line_report/i18n/hr.po b/account_invoice_line_report/i18n/hr.po index e1edfbae8..a68aaa10e 100644 --- a/account_invoice_line_report/i18n/hr.po +++ b/account_invoice_line_report/i18n/hr.po @@ -48,9 +48,3 @@ msgstr "Sa cijenom" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "Bez cijene" - -#~ msgid "Partner Tags" -#~ msgstr "Oznake partnera" - -#~ msgid "Vendor contains" -#~ msgstr "Dobavljač sadrži" diff --git a/account_invoice_line_report/i18n/sl.po b/account_invoice_line_report/i18n/sl.po index 449f0e3c0..64cae7646 100644 --- a/account_invoice_line_report/i18n/sl.po +++ b/account_invoice_line_report/i18n/sl.po @@ -48,6 +48,3 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_invoice_line_report.view_account_invoice_report_search msgid "Without Price" msgstr "" - -#~ msgid "Partner Tags" -#~ msgstr "Oznake partnerja" diff --git a/account_invoice_line_report/report/account_invoice_report_view.xml b/account_invoice_line_report/report/account_invoice_report_view.xml index b096e0d54..53fbf92fe 100644 --- a/account_invoice_line_report/report/account_invoice_report_view.xml +++ b/account_invoice_line_report/report/account_invoice_report_view.xml @@ -7,7 +7,7 @@ account.invoice.report.tree.info account.invoice.report - + diff --git a/account_invoice_line_report/static/description/index.html b/account_invoice_line_report/static/description/index.html index 26ebedc63..983f3aa1b 100644 --- a/account_invoice_line_report/static/description/index.html +++ b/account_invoice_line_report/static/description/index.html @@ -3,7 +3,7 @@ - + Account Invoice Line Report