ソースを参照

primer commit

root 4 年 前
コミット
0c575c2445
48 ファイル変更9954 行追加0 行削除
  1. 5 0
      __init__.py
  2. BIN
      __init__.pyc
  3. 55 0
      __openerp__.py
  4. 302 0
      demo/demo_data.xml
  5. 310 0
      i18n/ar.po
  6. 310 0
      i18n/ca.po
  7. 310 0
      i18n/da.po
  8. 310 0
      i18n/de.po
  9. 207 0
      i18n/en.po
  10. 312 0
      i18n/es.po
  11. 310 0
      i18n/es_CR.po
  12. 310 0
      i18n/es_EC.po
  13. 310 0
      i18n/es_VE.po
  14. 310 0
      i18n/fi.po
  15. 310 0
      i18n/fr.po
  16. 310 0
      i18n/gl.po
  17. 310 0
      i18n/hr.po
  18. 310 0
      i18n/hu.po
  19. 310 0
      i18n/it.po
  20. 310 0
      i18n/ja.po
  21. 310 0
      i18n/lt.po
  22. 310 0
      i18n/lv.po
  23. 310 0
      i18n/mk.po
  24. 310 0
      i18n/mn.po
  25. 310 0
      i18n/nl.po
  26. 310 0
      i18n/pl.po
  27. 310 0
      i18n/pt.po
  28. 310 0
      i18n/pt_BR.po
  29. 310 0
      i18n/ro.po
  30. 310 0
      i18n/sl.po
  31. 310 0
      i18n/sv.po
  32. 310 0
      i18n/tr.po
  33. 310 0
      i18n/zh_CN.po
  34. 9 0
      models/__init__.py
  35. BIN
      models/__init__.pyc
  36. 141 0
      models/pack.py
  37. BIN
      models/pack.pyc
  38. 212 0
      models/product.py
  39. BIN
      models/product.pyc
  40. 20 0
      models/sale_order.py
  41. BIN
      models/sale_order.pyc
  42. 122 0
      models/sale_order_line.py
  43. BIN
      models/sale_order_line.pyc
  44. 54 0
      models/sale_order_line_pack_line.py
  45. BIN
      models/sale_order_line_pack_line.pyc
  46. 5 0
      security/ir.model.access.csv
  47. 73 0
      views/pack_view.xml
  48. 67 0
      views/sale_view.xml

+ 5 - 0
__init__.py

@@ -0,0 +1,5 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from . import models

BIN
__init__.pyc


+ 55 - 0
__openerp__.py

@@ -0,0 +1,55 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Copyright (C) 2009  Àngel Àlvarez - NaN  (http://www.nan-tic.com)
+#    All Rights Reserved.
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+{
+    'name': 'Product Pack',
+    'version': '8.0.1.3.3',
+    'category': 'Product',
+    'sequence': 14,
+    'summary': '',
+    'description': """
+Product Pack
+============
+Withilist:
+----------
+* TODO calcular correctamente pack virtual available para negativos
+    """,
+    'author':  'NaN·tic, ADHOC',
+    'license': 'AGPL-3',
+    'images': [
+    ],
+    'depends': [
+        'sale',
+    ],
+    'data': [
+        'security/ir.model.access.csv',
+        'views/pack_view.xml',
+        'views/sale_view.xml',
+    ],
+    'demo': [
+        'demo/demo_data.xml',
+    ],
+    'test': [
+    ],
+    'installable': True,
+    'auto_install': False,
+    'application': False,
+}
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

+ 302 - 0
demo/demo_data.xml

@@ -0,0 +1,302 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data noupdate="1">
+
+<record id="product_pack_cpu_detailed_components" model="product.product">
+    <field name="name">Pack CPU (Detailed Components Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">components_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_cpu_detailed_components_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="product_id" ref="product.product_product_20"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_components_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="product_id" ref="product.product_product_19"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_components_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="product_id" ref="product.product_product_16"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_components_4" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="product_id" ref="product.product_product_24"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_components_5" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="product_id" ref="product.product_product_15"/>
+        <field name="quantity" eval="2.0"/>
+    </record>
+
+<record id="product_pack_cpu_detailed_totaliced" model="product.product">
+    <field name="name">Pack CPU (Detailed Totaliced Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">totalice_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_cpu_detailed_totaliced_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_20"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_totaliced_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_19"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_totaliced_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_16"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_detailed_totaliced_4" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_24"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_totaliced_5" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_15"/>
+        <field name="quantity" eval="2.0"/>
+    </record>
+
+<record id="product_pack_cpu_detailed_fixed" model="product.product">
+    <field name="name">Pack CPU (Detailed Fixed Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">fixed_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_cpu_detailed_fixed_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_20"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_fixed_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_19"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_fixed_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_16"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_fixed_4" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_24"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_detailed_fixed_5" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_15"/>
+        <field name="quantity" eval="2.0"/>
+    </record>
+
+<record id="product_pack_cpu_none_detailed_assited" model="product.product">
+    <field name="name">Pack CPU (None Detailed Assisted Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">none_detailed_assited_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_cpu_none_detailed_assited_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_assited"/>
+        <field name="product_id" ref="product.product_product_20"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_assited_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_assited"/>
+        <field name="product_id" ref="product.product_product_19"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_assited_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_assited"/>
+        <field name="product_id" ref="product.product_product_16"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_assited_4" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_assited"/>
+        <field name="product_id" ref="product.product_product_24"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_assited_5" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_assited"/>
+        <field name="product_id" ref="product.product_product_15"/>
+        <field name="quantity" eval="2.0"/>
+    </record>
+
+<record id="product_pack_cpu_none_detailed_totaliced" model="product.product">
+    <field name="name">Pack CPU (None Detailed Totaliced Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">none_detailed_totaliced_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_cpu_none_detailed_totaliced_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_20"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_totaliced_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_19"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_totaliced_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_16"/>
+        <field name="quantity" eval="1.0"/>
+        <field name="discount" eval="10.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_totaliced_4" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_24"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_cpu_none_detailed_totaliced_5" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_cpu_none_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_15"/>
+        <field name="quantity" eval="2.0"/>
+    </record>
+
+<record id="product_pack_pc_detailed_components" model="product.product">
+    <field name="name">Pack PC (Detailed Components Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">components_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_pc_detailed_components_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_components"/>
+        <field name="product_id" ref="product.product_product_12"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_components_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_components"/>
+        <field name="product_id" ref="product.product_product_31"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_components_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_components"/>
+        <field name="product_id" ref="product_pack_cpu_detailed_components"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+
+<record id="product_pack_pc_detailed_totaliced" model="product.product">
+    <field name="name">Pack PC (Detailed Totaliced Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">totalice_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_pc_detailed_totaliced_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_12"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_totaliced_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_31"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_totaliced_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+
+<record id="product_pack_pc_detailed_totaliced" model="product.product">
+    <field name="name">Pack PC (Detailed Totaliced Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">totalice_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_pc_detailed_totaliced_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_12"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_totaliced_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product.product_product_31"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_totaliced_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_totaliced"/>
+        <field name="product_id" ref="product_pack_cpu_detailed_totaliced"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+
+<record id="product_pack_pc_detailed_fixed" model="product.product">
+    <field name="name">Pack PC (Detailed Fixed Price)</field>
+    <field name="categ_id" ref="product.product_category_4"/>
+    <field name="pack" eval="True"/>
+    <field name="pack_price_type">fixed_price</field>
+    <field name="standard_price">20.5</field>
+    <field name="list_price">30.75</field>
+    <field name="type">service</field>
+</record>
+
+    <record id="pack_pc_detailed_fixed_1" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_12"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_fixed_2" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_fixed"/>
+        <field name="product_id" ref="product.product_product_31"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+    <record id="pack_pc_detailed_fixed_3" model="product.pack.line">
+        <field name="parent_product_id" ref="product_pack_pc_detailed_fixed"/>
+        <field name="product_id" ref="product_pack_cpu_detailed_fixed"/>
+        <field name="quantity" eval="1.0"/>
+    </record>
+
+    </data>
+</openerp>

+ 310 - 0
i18n/ar.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Arabic (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "إلغاء"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/ca.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Catalan (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/da.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Danish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Annullér"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "eller"

+ 310 - 0
i18n/de.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: German (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "oder"

+ 207 - 0
i18n/en.po

@@ -0,0 +1,207 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-09-09 23:57+0000\n"
+"PO-Revision-Date: 2015-09-10 00:00+0000\n"
+"Last-Translator: Juan Jose Scarafia <scarafia.juanjose@gmail.com>\n"
+"Language-Team: English (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/en/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: en\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.template,pack_price_type:0
+msgid ""
+"\n"
+"        * Totalice Price: Sum individual prices on the product pack price.\n"
+"        * Fixed Price: Price of this product instead of components prrices.\n"
+"        * Components Price: Components prices plast pack price.\n"
+"        "
+msgstr "\n        * Totalice Price: Sum individual prices on the product pack price.\n        * Fixed Price: Price of this product instead of components prrices.\n        * Components Price: Components prices plast pack price.\n        "
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Components Prices"
+msgstr "Components Prices"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr "Created by"
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr "Depth"
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr "Depth of the product if it is part of a pack."
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Fixed Price"
+msgstr "Fixed Price"
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr "Lines in pack"
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0
+#: help:product.product,used_pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr "List of products that are part of this pack."
+
+#. module: product_pack
+#: model:res.groups,name:product_pack.group_pack
+msgid "Manage Packs On Sales Orders"
+msgstr "Manage Packs On Sales Orders"
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr "Order Line"
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr "Pack"
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr "Pack Lines"
+
+#. module: product_pack
+#: field:product.template,pack_price_type:0
+msgid "Pack Price Type"
+msgstr "Pack Price Type"
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr "Pack Product Line"
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr "Pack Product Lines"
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.product,used_pack_line_ids:0
+msgid "Pack Products"
+msgstr "Pack Products"
+
+#. module: product_pack
+#: code:addons/product_pack/pack.py:159 code:addons/product_pack/pack.py:164
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr "Pack lines products company must be the same as the                    parent product company"
+
+#. module: product_pack
+#: field:product.template,pack:0
+msgid "Pack?"
+msgstr "Pack?"
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr "Parent Product"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr "Product"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr "Product Template"
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr "Quantity"
+
+#. module: product_pack
+#: field:product.template,sale_order_pack:0
+msgid "Sale Order Pack"
+msgstr "Sale Order Pack"
+
+#. module: product_pack
+#: help:product.template,sale_order_pack:0
+msgid ""
+"Sale order are packs used on sale orders to calculate a price of a line"
+msgstr "Sale order are packs used on sale orders to calculate a price of a line"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr "Sales Order"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr "Sales Order Line"
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr "Sales Order Line Pack Lines"
+
+#. module: product_pack
+#: help:product.template,pack:0
+msgid "TODO"
+msgstr "TODO"
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr "The pack that contains this product."
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr "Unit Price"

+ 312 - 0
i18n/es.po

@@ -0,0 +1,312 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+# Albert Cervera i Areny <albert@nan-tic.com>, 2009
+# Nicolas Mac Rouillon <nmr@ingadhoc.com>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2017-04-03 13:48+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Spanish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr "Puede modificar precios"
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr "Creadon en"
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr "Profundidad"
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr "Profundidad del producto si forma parte de un pack."
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr "Detalle"
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr "Detalles"
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr "Descuento (%)"
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr "Display Name"
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr "If checked all users can modify the        price of this product in a sale order or invoice."
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr "Última Modificación en"
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr "Líneas en el pack"
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr "Lista de productos que forman parte del pack."
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr "Línea de la orden"
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr "Pack"
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr "Línea de pack de productos"
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr "Líneas del pack de productos"
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr "Productos del pack"
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr "Tipo de Pack"
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr "Producto padre"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr "Producto"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr "Plantilla de Producto"
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr "Cantidad"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr "Orden de Ventas"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr "Línea pedido de venta"
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr "Línea pedido de venta"
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr "Guardar"
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr "Subtotal"
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr "El pack que contiene este producto."
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "or"

+ 310 - 0
i18n/es_CR.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/es_EC.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Spanish (Ecuador) (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/es_VE.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Spanish (Venezuela) (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/es_VE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_VE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/fi.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Finnish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Peruuta"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr "Luonut"
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr "Luotu"
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimeksi päivittänyt"
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr "Viimeksi päivitetty"
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "tai"

+ 310 - 0
i18n/fr.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: French (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Annuler"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "ou"

+ 310 - 0
i18n/gl.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Galician (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/gl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "ou"

+ 310 - 0
i18n/hr.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Croatian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Odustani"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "ili"

+ 310 - 0
i18n/hu.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Hungarian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Mégsem"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "vagy"

+ 310 - 0
i18n/it.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Italian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Annulla"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "o"

+ 310 - 0
i18n/ja.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Japanese (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "キャンセル"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/lt.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Lithuanian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr "Produktas"
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/lv.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Latvian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Atcelt"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/mk.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Macedonian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Откажи"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "или"

+ 310 - 0
i18n/mn.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Mongolian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Цуцлах"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "эсвэл"

+ 310 - 0
i18n/nl.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Dutch (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Annuleren"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "of"

+ 310 - 0
i18n/pl.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Polish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/language/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Anuluj"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "lub"

+ 310 - 0
i18n/pt.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Portuguese (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "ou"

+ 310 - 0
i18n/pt_BR.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "ou"

+ 310 - 0
i18n/ro.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Romanian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Anulati"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "sau"

+ 310 - 0
i18n/sl.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Slovenian (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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"
+
+#. module: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Prekliči"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/sv.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Swedish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "Avbryt"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr ""

+ 310 - 0
i18n/tr.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Turkish (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "İptal"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "veya"

+ 310 - 0
i18n/zh_CN.po

@@ -0,0 +1,310 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * product_pack
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: product (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-03 14:18+0000\n"
+"PO-Revision-Date: 2016-08-19 15:13+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/adhoc/ingadhoc-product-8-0/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: product_pack
+#: help:product.product,pack_price_type:0
+#: help:product.template,pack_price_type:0 help:sale.order.line,pack_type:0
+msgid ""
+"* Detailed - Components Prices: Detail lines with prices on sales order.\n"
+"* Detailed - Totaliced Price: Detail lines on sales order totalicing lines prices on pack (don't show component prices).\n"
+"* Detailed - Fixed Price: Detail lines on sales order and use product pack price (ignore line prices).\n"
+"* None Detailed - Assisted Price: Do not detail lines on sales order. Assist to get pack price using pack lines."
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:146
+#, python-format
+msgid "A \"None Detailed - Assisted Price Pack\" can not have a pack as a child!"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,can_modify_prices:0
+msgid "Can modify prices"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Cancel"
+msgstr "取消(&C)"
+
+#. module: product_pack
+#: field:product.pack.line,create_uid:0
+#: field:sale.order.line.pack.line,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,create_date:0
+#: field:sale.order.line.pack.line,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_depth:0
+msgid "Depth"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_depth:0
+msgid "Depth of the product if it is part of a pack."
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order:product_pack.view_order_stock_form
+msgid "Detail"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Components Prices"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Fixed Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/sale_order_line.py:75
+#, python-format
+msgid "Details"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,discount:0
+#: field:sale.order.line.pack.line,discount:0
+msgid "Discount (%)"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,display_name:0
+#: field:sale.order.line.pack.line,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:97
+#, python-format
+msgid ""
+"Error! You cannot create recursive packs.\n"
+"Product id: %s"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,id:0 field:sale.order.line.pack.line,id:0
+msgid "ID"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,can_modify_prices:0
+msgid ""
+"If checked all users can modify the        price of this product in a sale "
+"order or invoice."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack:0 help:product.template,pack:0
+msgid "Is a Product Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,__last_update:0
+#: field:sale.order.line.pack.line,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_uid:0
+#: field:sale.order.line.pack.line,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,write_date:0
+#: field:sale.order.line.pack.line,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_child_line_ids:0
+msgid "Lines in pack"
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,used_pack_line_ids:0
+#: help:product.template,used_pack_line_ids:0
+msgid "List of packs where product is used."
+msgstr ""
+
+#. module: product_pack
+#: help:product.product,pack_line_ids:0 help:product.template,pack_line_ids:0
+msgid "List of products that are part of this pack."
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Assisted Price"
+msgstr ""
+
+#. module: product_pack
+#: selection:product.template,pack_price_type:0
+msgid "None Detailed - Totaliced Price"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,used_pack_line_ids:0
+#: field:product.template,used_pack_line_ids:0
+msgid "On Packs"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,order_line_id:0
+msgid "Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.product:product_pack.nan_product_pack_form
+#: view:product.template:product_pack.product_template_only_form_view
+#: field:sale.order.line,pack_parent_line_id:0
+msgid "Pack"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_line_ids:0
+msgid "Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_form
+msgid "Pack Product Line"
+msgstr ""
+
+#. module: product_pack
+#: view:product.pack.line:product_pack.product_pack_line_tree
+msgid "Pack Product Lines"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_line_ids:0
+#: field:product.template,pack_line_ids:0
+msgid "Pack Products"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack_price_type:0
+#: field:product.template,pack_price_type:0 field:sale.order.line,pack_type:0
+msgid "Pack Type"
+msgstr ""
+
+#. module: product_pack
+#: code:addons/product_pack/models/product.py:174
+#: code:addons/product_pack/models/product.py:179
+#, python-format
+msgid ""
+"Pack lines products company must be the same as the                    "
+"parent product company"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line,pack_total:0
+msgid "Pack total"
+msgstr ""
+
+#. module: product_pack
+#: field:product.product,pack:0 field:product.template,pack:0
+msgid "Pack?"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,parent_product_id:0
+msgid "Parent Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_product
+#: field:product.pack.line,product_id:0
+#: field:sale.order.line.pack.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: product_pack
+#: field:product.pack.line,quantity:0
+#: field:sale.order.line.pack.line,product_uom_qty:0
+msgid "Quantity"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line_pack_line
+msgid "Sale Order None Detailed Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order
+msgid "Sales Order"
+msgstr ""
+
+#. module: product_pack
+#: model:ir.model,name:product_pack.model_sale_order_line
+msgid "Sales Order Line"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line.pack.line:product_pack.view_sale_line_pack_line_tree
+msgid "Sales Order Line Pack Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Sales Order Lines"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "Save"
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_subtotal:0
+msgid "Subtotal"
+msgstr ""
+
+#. module: product_pack
+#: help:sale.order.line,pack_parent_line_id:0
+msgid "The pack that contains this product."
+msgstr ""
+
+#. module: product_pack
+#: field:sale.order.line.pack.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: product_pack
+#: view:sale.order.line:product_pack.view_order_line_form2
+msgid "or"
+msgstr "or"

+ 9 - 0
models/__init__.py

@@ -0,0 +1,9 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from . import pack
+from . import product
+from . import sale_order_line_pack_line
+from . import sale_order_line
+from . import sale_order

BIN
models/__init__.pyc


+ 141 - 0
models/pack.py

@@ -0,0 +1,141 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from openerp import fields, models, api
+import openerp.addons.decimal_precision as dp
+
+
+class product_pack(models.Model):
+    _name = 'product.pack.line'
+    _rec_name = 'product_id'
+
+    parent_product_id = fields.Many2one(
+        'product.product',
+        'Parent Product',
+        ondelete='cascade',
+        required=True
+        )
+    quantity = fields.Float(
+        'Quantity',
+        required=True,
+        default=1.0,
+        digits=dp.get_precision('Product UoS'),
+        )
+    product_id = fields.Many2one(
+        'product.product',
+        'Product',
+        ondelete='cascade',
+        required=True,
+        )
+
+    discount = fields.Float(
+        'Discount (%)',
+        digits=dp.get_precision('Discount'),
+        )
+    price = fields.Float(
+        'Precio',
+        required=True,
+        default=0.0,
+        )
+    subtotal = fields.Float(
+        'Subtotal',
+        required=True,
+        compute="_product_price_subtotal"
+        )
+
+    @api.one
+    @api.depends('product_id')
+    def _product_price_subtotal(self):
+        if(self.price > 0):
+            self.subtotal = self.price * self.quantity
+        else:
+            self.price = self.product_id.lst_price
+
+        self.subtotal = self.price * self.quantity
+
+    @api.onchange('price')
+    def _product_change_price_subtotal(self):
+        if(self.price > 0):
+            self.subtotal = self.price * self.quantity
+        else:
+            self.price = self.product_id.lst_price
+
+        self.subtotal = self.price * self.quantity
+
+    @api.onchange('quantity')
+    def _product_change_quantity_subtotal(self):
+        if(self.price > 0):
+            self.subtotal = self.price * self.quantity
+        else:
+            self.price = self.product_id.lst_price
+
+        self.subtotal = self.price * self.quantity
+
+    @api.multi
+    def get_sale_order_line_vals(self, line, order):
+        self.ensure_one()
+        # pack_price = 0.0
+        subproduct = self.product_id
+        quantity = self.quantity * line.product_uom_qty
+
+        taxes = order.fiscal_position.map_tax(
+            subproduct.taxes_id)
+        tax_id = [(6, 0, taxes.ids)]
+
+        if subproduct.uos_id:
+            uos_id = subproduct.uos_id.id
+            uos_qty = quantity * subproduct.uos_coeff
+        else:
+            uos_id = False
+            uos_qty = quantity
+
+        # if pack is fixed price or totlice price we don want amount on
+        # pack lines
+        if line.product_id.pack_price_type in [
+                'fixed_price', 'totalice_price']:
+            price = 0.0
+            discount = 0.0
+        else:
+            pricelist = order.pricelist_id.id
+            price = self.env['product.pricelist'].price_get(
+                subproduct.id, quantity,
+                order.partner_id.id, context={
+                    'uom': subproduct.uom_id.id,
+                    'date': order.date_order})[pricelist]
+            discount = self.discount
+
+        # Obtain product name in partner's language
+        if order.partner_id.lang:
+            subproduct = subproduct.with_context(
+                lang=order.partner_id.lang)
+        subproduct_name = subproduct.name
+
+        vals = {
+            'order_id': order.id,
+            'name': '%s%s' % (
+                '> ' * (line.pack_depth + 1), subproduct_name
+            ),
+            # 'delay': subproduct.sale_delay or 0.0,
+            'product_id': subproduct.id,
+            # 'procurement_ids': (
+            #     [(4, x.id) for x in line.procurement_ids]
+            # ),
+            'price_unit': price,
+            'tax_id': tax_id,
+            'address_allotment_id': False,
+            'product_uom_qty': quantity,
+            'product_uom': subproduct.uom_id.id,
+            'product_uos_qty': uos_qty,
+            'product_uos': uos_id,
+            'product_packaging': False,
+            'discount': discount,
+            'number_packages': False,
+            'th_weight': False,
+            'state': 'draft',
+            'pack_parent_line_id': line.id,
+            'pack_depth': line.pack_depth + 1,
+        }
+        return vals
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

BIN
models/pack.pyc


+ 212 - 0
models/product.py

@@ -0,0 +1,212 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from openerp import fields, models, api, _
+from openerp.osv import fields as old_fields
+from openerp.exceptions import Warning
+import math
+
+class product_product(models.Model):
+    _inherit = 'product.product'
+
+    pack_line_ids = fields.One2many(
+        'product.pack.line',
+        'parent_product_id',
+        'Pack Products',
+        help='List of products that are part of this pack.'
+        )
+    used_pack_line_ids = fields.One2many(
+        'product.pack.line',
+        'product_id',
+        'On Packs',
+        help='List of packs where product is used.'
+        )
+
+#     def _product_available(
+#             self, cr, uid, ids, field_names=None, arg=False, context=None):
+#         """
+#         For product packs we get availability in a different way
+#         """
+#         pack_product_ids = self.search(cr, uid, [
+#             ('pack', '=', True),
+#             ('id', 'in', ids),
+#         ])
+#         res = super(product_product, self)._product_available(
+#             cr, uid, list(set(ids) - set(pack_product_ids)),
+#             field_names, arg, context)
+#         for product in self.browse(cr, uid, pack_product_ids, context=context):
+#             pack_qty_available = []
+#             pack_virtual_available = []
+#             for subproduct in product.pack_line_ids:
+#                 subproduct_stock = self._product_available(
+#                     cr, uid, [subproduct.product_id.id], field_names, arg,
+#                     context)[subproduct.product_id.id]
+#                 sub_qty = subproduct.quantity
+#                 if sub_qty:
+#                     pack_qty_available.append(math.floor(
+#                         subproduct_stock['qty_available'] / sub_qty))
+#                     pack_virtual_available.append(math.floor(
+#                         subproduct_stock['virtual_available'] / sub_qty))
+#             # TODO calcular correctamente pack virtual available para negativos
+#             res[product.id] = {
+#                 'qty_available': (
+#                     pack_qty_available and min(pack_qty_available) or False),
+#                 'incoming_qty': 0,
+#                 'outgoing_qty': 0,
+#                 'virtual_available': (
+#                     pack_virtual_available and
+#                     max(min(pack_virtual_available), 0) or False),
+#             }
+#         return res
+
+#     def _search_product_quantity(self, cr, uid, obj, name, domain, context):
+#         """
+#         We use original search function
+#         """
+#         return super(product_product, self)._search_product_quantity(
+#             cr, uid, obj, name, domain, context)
+
+#     # overwrite ot this fields so that we can modify _product_available
+#     # function to support packs
+#     _columns = {
+#         'qty_available': old_fields.function(
+#             _product_available, multi='qty_available',
+#             fnct_search=_search_product_quantity),
+#         'virtual_available': old_fields.function(
+#             _product_available, multi='qty_available',
+#             fnct_search=_search_product_quantity),
+#         'incoming_qty': old_fields.function(
+#             _product_available, multi='qty_available',
+#             fnct_search=_search_product_quantity),
+#         'outgoing_qty': old_fields.function(
+#             _product_available, multi='qty_available',
+#             fnct_search=_search_product_quantity),
+#     }
+
+    @api.one
+    @api.constrains('pack_line_ids')
+    def check_recursion(self):
+        """
+        Check recursion on packs
+        """
+        pack_lines = self.pack_line_ids
+        while pack_lines:
+            if self in pack_lines.mapped('product_id'):
+                raise Warning(_(
+                    'Error! You cannot create recursive packs.\n'
+                    'Product id: %s') % self.id)
+            pack_lines = pack_lines.mapped('product_id.pack_line_ids')
+
+
+class product_template(models.Model):
+    _inherit = 'product.template'
+
+    # TODO rename a pack_type
+    pack_price_type = fields.Selection([
+        ('components_price', 'Detallado - Precios de los componentes'),
+        ('totalice_price', 'Detallado - Precio total'),
+        ('fixed_price', 'Detallado - Precio fijo'),
+        ('none_detailed_assited_price', 'No detallado - Precio Asistido'),
+        ('none_detailed_totaliced_price', 'No detallado - Precio total'),
+    ],
+        'Pack Type',
+        help="* Detailed - Components Prices: Detail lines with prices on "
+        "sales order.\n"
+        "* Detailed - Totaliced Price: Detail lines on sales order totalicing "
+        "lines prices on pack (don't show component prices).\n"
+        "* Detailed - Fixed Price: Detail lines on sales order and use product"
+        " pack price (ignore line prices).\n"
+        "* None Detailed - Assisted Price: Do not detail lines on sales "
+        "order. Assist to get pack price using pack lines.",
+        default='fixed_price'
+        )
+    pack = fields.Boolean(
+        'Pack?',
+        help='Is a Product Pack?',
+        )
+    pack_line_ids = fields.One2many(
+        related='product_variant_ids.pack_line_ids'
+        )
+    used_pack_line_ids = fields.One2many(
+        related='product_variant_ids.used_pack_line_ids'
+        )
+
+    @api.constrains(
+        'product_variant_ids', 'pack_price_type')
+    def check_relations(self):
+        """
+        Check assited packs dont have packs a childs
+        """
+        # check assited price has no packs child of them
+        if self.pack_price_type == 'none_detailed_assited_price':
+            child_packs = self.mapped(
+                'pack_line_ids.product_id').filtered('pack')
+            if child_packs:
+                raise Warning(_(
+                    'A "None Detailed - Assisted Price Pack" can not have a '
+                    'pack as a child!'))
+
+        # TODO we also should check this
+        # check if we are configuring a pack for a product that is partof a
+        # assited pack
+        # if self.pack:
+        #     for product in self.product_variant_ids
+        #     parent_assited_packs = self.env['product.pack.line'].search([
+        #         ('product_id', '=', self.id),
+        #         ('parent_product_id.pack_price_type', '=',
+        #             'none_detailed_assited_price'),
+        #         ])
+        #     print 'parent_assited_packs', parent_assited_packs
+        #     if parent_assited_packs:
+        #         raise Warning(_(
+        #             'You can not set this product as pack because it is part'
+        #             ' of a "None Detailed - Assisted Price Pack"'))
+
+    @api.one
+    @api.constrains('company_id', 'product_variant_ids', 'used_pack_line_ids')
+    def check_pack_line_company(self):
+        """
+        Check packs are related to packs of same company
+        """
+        for line in self.pack_line_ids:
+            if line.product_id.company_id != self.company_id:
+                raise Warning(_(
+                    'Pack lines products company must be the same as the\
+                    parent product company'))
+        for line in self.used_pack_line_ids:
+            if line.parent_product_id.company_id != self.company_id:
+                raise Warning(_(
+                    'Pack lines products company must be the same as the\
+                    parent product company'))
+
+    @api.multi
+    def write(self, vals):
+        """
+        We remove from prod.prod to avoid error
+        """
+        if vals.get('pack_line_ids', False):
+            self.product_variant_ids.write(
+                {'pack_line_ids': vals.pop('pack_line_ids')})
+        return super(product_template, self).write(vals)
+
+    @api.model
+    def _price_get(self, products, ptype='list_price'):
+        res = super(product_template, self)._price_get(
+            products, ptype=ptype)
+        for product in products:
+            if (
+                    product.pack and
+                    product.pack_price_type in [
+                        'totalice_price',
+                        'none_detailed_assited_price',
+                        'none_detailed_totaliced_price']):
+                pack_price = 0.0
+                for pack_line in product.pack_line_ids:
+                    product_line_price = pack_line.product_id.price_get()[
+                            pack_line.product_id.id] * (
+                                1 - (pack_line.discount or 0.0) / 100.0)
+                    product_line_price
+                    pack_price += (product_line_price * pack_line.quantity)
+                res[product.id] = pack_price
+        return res

BIN
models/product.pyc


+ 20 - 0
models/sale_order.py

@@ -0,0 +1,20 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from openerp import models, api
+
+
+class sale_order(models.Model):
+    _inherit = 'sale.order'
+
+    @api.one
+    def copy(self, default=None):
+        sale_copy = super(sale_order, self).copy(default)
+        # we unlink pack lines that should not be copied
+        pack_copied_lines = sale_copy.order_line.filtered(
+                lambda l: l.pack_parent_line_id.order_id == self)
+        pack_copied_lines.unlink()
+        return sale_copy
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

BIN
models/sale_order.pyc


+ 122 - 0
models/sale_order_line.py

@@ -0,0 +1,122 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from openerp import fields, models, api, _
+
+
+class sale_order_line(models.Model):
+    _inherit = 'sale.order.line'
+
+    # Fields for sale order pack
+    pack_total = fields.Float(
+        string='Pack total',
+        compute='_get_pack_total'
+        )
+    pack_line_ids = fields.One2many(
+        'sale.order.line.pack.line',
+        'order_line_id',
+        'Pack Lines'
+        )
+    pack_type = fields.Selection(
+        related='product_id.pack_price_type',
+        readonly=True
+        )
+
+    # Fields for common packs
+    pack_depth = fields.Integer(
+        'Depth',
+        help='Depth of the product if it is part of a pack.'
+    )
+    pack_parent_line_id = fields.Many2one(
+        'sale.order.line',
+        'Pack',
+        help='The pack that contains this product.',
+        ondelete="cascade",
+        # copy=False,
+    )
+    pack_child_line_ids = fields.One2many(
+        'sale.order.line',
+        'pack_parent_line_id',
+        'Lines in pack'
+    )
+
+    @api.one
+    @api.constrains('product_id', 'price_unit', 'product_uom_qty')
+    def expand_pack_line(self):
+        detailed_packs = ['components_price', 'totalice_price', 'fixed_price']
+        if (
+                self.state == 'draft' and
+                self.product_id.pack and
+                self.pack_type in detailed_packs):
+            for subline in self.product_id.pack_line_ids:
+                vals = subline.get_sale_order_line_vals(
+                    self, self.order_id)
+                vals['sequence'] = self.sequence
+                existing_subline = self.search([
+                    ('product_id', '=', subline.product_id.id),
+                    ('pack_parent_line_id', '=', self.id),
+                    ], limit=1)
+                # if subline already exists we update, if not we create
+                if existing_subline:
+                    existing_subline.write(vals)
+                else:
+                    self.create(vals)
+
+    @api.multi
+    def button_save_data(self):
+        return True
+
+    @api.multi
+    def action_pack_detail(self):
+        view_id = self.env['ir.model.data'].xmlid_to_res_id(
+            'product_pack.view_order_line_form2')
+        view = {
+            'name': _('Details'),
+            'view_type': 'form',
+            'view_mode': 'form',
+            'res_model': 'sale.order.line',
+            'view_id': view_id,
+            'type': 'ir.actions.act_window',
+            'target': 'new',
+            'readonly': True,
+            'res_id': self.id,
+            'context': self.env.context
+        }
+        return view
+
+    @api.one
+    @api.depends(
+        'pack_line_ids',
+        'pack_line_ids.price_subtotal',
+    )
+    def _get_pack_total(self):
+        pack_total = 0.0
+        if self.pack_line_ids:
+            pack_total = sum(x.price_subtotal for x in self.pack_line_ids)
+        self.pack_total = pack_total
+
+    @api.one
+    @api.onchange('pack_total')
+    def _onchange_pack_line_ids(self):
+        self.price_unit = self.pack_total
+
+    @api.constrains('product_id')
+    def expand_none_detailed_pack(self):
+        if self.product_id.pack_price_type == 'none_detailed_assited_price':
+            # remove previus existing lines
+            self.pack_line_ids.unlink()
+
+            # create a sale pack line for each product pack line
+            for pack_line in self.product_id.pack_line_ids:
+                price_unit = pack_line.product_id.lst_price
+                quantity = pack_line.quantity
+                vals = {
+                    'order_line_id': self.id,
+                    'product_id': pack_line.product_id.id,
+                    'product_uom_qty': quantity,
+                    'price_unit': price_unit,
+                    'discount': pack_line.discount,
+                    'price_subtotal': price_unit * quantity,
+                    }
+                self.pack_line_ids.create(vals)

BIN
models/sale_order_line.pyc


+ 54 - 0
models/sale_order_line_pack_line.py

@@ -0,0 +1,54 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in root directory
+##############################################################################
+from openerp import fields, models, api
+import openerp.addons.decimal_precision as dp
+
+
+class sale_order_line_pack_line(models.Model):
+    _name = 'sale.order.line.pack.line'
+    _description = 'Sale Order None Detailed Pack Lines'
+
+    order_line_id = fields.Many2one(
+        'sale.order.line',
+        'Order Line',
+        ondelete='cascade',
+        required=True
+        )
+    product_id = fields.Many2one(
+        'product.product',
+        'Product',
+        required=True
+        )
+    price_unit = fields.Float(
+        'Unit Price',
+        required=True,
+        digits=dp.get_precision('Product Price')
+        )
+    discount = fields.Float(
+        'Discount (%)',
+        digits=dp.get_precision('Discount'),
+        )
+    price_subtotal = fields.Float(
+        compute="_amount_line",
+        string='Subtotal',
+        digits=dp.get_precision('Account')
+        )
+    product_uom_qty = fields.Float(
+        'Quantity',
+        digits=dp.get_precision('Product UoS'),
+        required=True
+        )
+
+    @api.one
+    @api.onchange('product_id')
+    def onchange_product_id(self):
+        self.price_unit = self.product_id.lst_price
+
+    @api.one
+    @api.depends('price_unit', 'product_uom_qty')
+    def _amount_line(self):
+        self.price_subtotal = (
+            self.product_uom_qty * self.price_unit *
+            (1 - (self.discount or 0.0) / 100.0))

BIN
models/sale_order_line_pack_line.pyc


+ 5 - 0
security/ir.model.access.csv

@@ -0,0 +1,5 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_product_pack_line_manager,product.pack.line manager,model_product_pack_line,base.group_sale_manager,1,1,1,1
+access_product_pack_line_all,product.pack.line,model_product_pack_line,,1,0,0,0
+access_sale_order_line_pack_line_user,sale_order_line_pack_line_user,model_sale_order_line_pack_line,base.group_user,1,1,1,1
+access_sale_order_line_pack_line_all,sale_order_line_pack_line_all,model_sale_order_line_pack_line,,1,0,0,0

+ 73 - 0
views/pack_view.xml

@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+<data>
+
+	<!-- Product view modification -->
+	<record model="ir.ui.view" id="product_template_only_form_view">
+		<field name="name">product.template.pack.form</field>
+		<field name="model">product.template</field>
+		<field name="inherit_id" ref="product.product_template_only_form_view" />
+		<field name="arch" type="xml">
+			<field name="type" position="after">
+				<field name="pack" string="¿Es un paquete?"/>
+				<field name="pack_price_type" attrs="{'invisible':[('pack', '=', False)], 'required':[('pack','=',True)]}" context="{'pack_price_type': pack_price_type}" string="Tipo de paquete"/>
+			</field>
+			<notebook position="inside">
+				<page string="Receta" attrs="{'invisible': ['|', ('product_variant_count', '>', 1), ('pack', '=', False)]}">
+					<field name="pack_line_ids"/>
+				</page>
+			</notebook>
+		</field>
+	</record>
+
+	<record model="ir.ui.view" id="nan_product_pack_form">
+		<field name="name">product.product.pack.form</field>
+		<field name="model">product.product</field>
+		<field name="inherit_id" ref="product.product_normal_form_view" />
+		<field name="arch" type="xml">
+			<field name="type" position="after">
+				<field name="pack" string="¿Es un paquete?"/>
+				<field name="pack_price_type" attrs="{'invisible':[('pack', '=', False)], 'required':[('pack','=',True)]}" context="{'pack_price_type': pack_price_type}" string="Tipo de paquete"/>
+			</field>
+			<notebook position="inside">
+				<page string="Receta" attrs="{'invisible':[('pack', '=', False)]}">
+					<field name="pack_line_ids"/>
+				</page>
+			</notebook>
+		</field>
+	</record>
+
+	<!-- product.pack.line -->
+	<record model="ir.ui.view" id="product_pack_line_form">
+		<field name="name">product.pack.line.form</field>
+		<field name="model">product.pack.line</field>
+		<field name="type">form</field>
+		<field name="arch" type="xml">
+			<form string="Pack Product Line">
+				<group>
+					<field name="product_id"/>
+					<field name="quantity"/>
+					<field name="price" string="Precio"/>
+					<field name="subtotal"/>
+					<!-- <field name="discount" groups="sale.group_discount_per_so_line" invisible="context.get('pack_price_type') == 'fixed_price'"/> -->
+				</group>
+			</form>
+		</field>
+	</record>
+
+	<record model="ir.ui.view" id="product_pack_line_tree">
+		<field name="name">product.pack.line.tree</field>
+		<field name="model">product.pack.line</field>
+		<field name="type">tree</field>
+		<field name="arch" type="xml">
+			<tree string="Pack Product Lines" editable="bottom">
+				<field name="product_id"/>
+				<field name="quantity"/>
+				<field name="price" string="Precio"/>
+				<field name="subtotal" sum="total"/>
+				<!-- <field name="discount" groups="sale.group_discount_per_so_line" invisible="context.get('pack_price_type') == 'fixed_price'"/> -->
+			</tree>
+		</field>
+	</record>
+</data>
+</openerp>

+ 67 - 0
views/sale_view.xml

@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+
+    <!-- sale order line pack line -->
+    <record model="ir.ui.view" id="view_sale_line_pack_line_tree">
+        <field name="name">sale.line.pack.line.tree</field>
+        <field name="model">sale.order.line.pack.line</field>
+        <field name="arch" type="xml">
+            <tree string="Sales Order Line Pack Lines" editable="bottom">
+                <field name="product_id" groups="base.group_user"/>
+                <field name="price_unit"/>
+                <field name="product_uom_qty"/>
+                <field name="discount" groups="sale.group_discount_per_so_line"/>
+                <field name="price_subtotal"/>
+            </tree>
+        </field>
+    </record>
+
+   <record model="ir.ui.view" id="view_order_line_form2">
+        <field name="name">view.order.line.button</field>
+        <field name="model">sale.order.line</field>
+        <field eval="90" name="priority"/>
+        <field name="arch" type="xml">
+            <form string="Sales Order Lines" create="false">
+                <header>
+                    <field name="state" widget="statusbar" statusbar_visible="draft,confirmed,done" statusbar_colors="{'exception':'red','cancel':'red'}"/>
+                </header>
+                <sheet>
+                    <field name="pack_type" invisible="1"/>
+                    <div attrs="{'invisible':[('pack_type', '!=', 'none_detailed_assited_price')]}">
+                        <div name="product_pack">
+                            <label for="pack_line_ids"/>
+                            <field name="pack_line_ids"/>
+                        </div>
+
+                            <group class="oe_subtotal_footer oe_right" colspan="2" name="pack_total">
+                                <field name="pack_total" widget="monetary" options="{'currency_field': 'currency_id'}"/>
+                                <div class="oe_subtotal_footer_separator" colspan="2"/>
+                                <field name="price_unit" widget="monetary" options="{'currency_field': 'currency_id'}"/>
+                        </group>
+                    </div>
+                </sheet>
+                <footer>
+                    <button class="oe_highlight" name="button_save_data" string="Save" type="object" />
+                    or
+                    <button class="oe_link" special="cancel" string="Cancel" />
+                </footer>
+            </form>
+        </field>
+    </record>
+
+    <record model="ir.ui.view" id="view_order_stock_form">
+        <field name="name">sale.order.form.inherit</field>
+        <field name="model">sale.order</field>
+        <field name="inherit_id" ref="sale.view_order_form"/>
+        <field name="arch" type="xml">
+            <!-- button to open line form -->
+            <xpath expr="//field[@name='order_line']/tree//field[@name='price_subtotal']" position="after">
+                <field name="pack_type" invisible="1"/>
+                <button name="action_pack_detail" string="Detail" attrs="{'invisible':[('pack_type', '!=', 'none_detailed_assited_price')]}" type="object"/>
+            </xpath> 
+        </field>
+    </record>
+
+    </data>
+</openerp>