From 1bf9eba8822b3a5bb08219c1cf249ab11e946e04 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Wed, 23 Aug 2017 14:29:12 +0200 Subject: [PATCH] Revert "[REM][8.0] remove pos_remove_pos_category Fix : #200" --- pos_remove_pos_category/README.rst | 62 ++++++++++ pos_remove_pos_category/__init__.py | 23 ++++ pos_remove_pos_category/__openerp__.py | 23 ++++ pos_remove_pos_category/i18n/ar.po | 70 +++++++++++ pos_remove_pos_category/i18n/bg.po | 70 +++++++++++ pos_remove_pos_category/i18n/bs.po | 70 +++++++++++ pos_remove_pos_category/i18n/ca.po | 70 +++++++++++ pos_remove_pos_category/i18n/cs.po | 70 +++++++++++ pos_remove_pos_category/i18n/da.po | 70 +++++++++++ pos_remove_pos_category/i18n/de.po | 70 +++++++++++ pos_remove_pos_category/i18n/en_GB.po | 70 +++++++++++ pos_remove_pos_category/i18n/es.po | 71 ++++++++++++ pos_remove_pos_category/i18n/es_AR.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_CO.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_CR.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_EC.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_ES.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_MX.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_PE.po | 70 +++++++++++ pos_remove_pos_category/i18n/es_VE.po | 70 +++++++++++ pos_remove_pos_category/i18n/eu.po | 70 +++++++++++ pos_remove_pos_category/i18n/fa.po | 70 +++++++++++ pos_remove_pos_category/i18n/fi.po | 70 +++++++++++ pos_remove_pos_category/i18n/fr.po | 55 +++++++++ pos_remove_pos_category/i18n/fr_CH.po | 70 +++++++++++ pos_remove_pos_category/i18n/he.po | 70 +++++++++++ pos_remove_pos_category/i18n/hr.po | 70 +++++++++++ pos_remove_pos_category/i18n/it.po | 72 ++++++++++++ pos_remove_pos_category/i18n/ja.po | 70 +++++++++++ pos_remove_pos_category/i18n/lt.po | 70 +++++++++++ pos_remove_pos_category/i18n/lv.po | 70 +++++++++++ pos_remove_pos_category/i18n/mk.po | 70 +++++++++++ pos_remove_pos_category/i18n/mn.po | 70 +++++++++++ pos_remove_pos_category/i18n/nb.po | 70 +++++++++++ pos_remove_pos_category/i18n/nl.po | 70 +++++++++++ pos_remove_pos_category/i18n/nl_BE.po | 70 +++++++++++ pos_remove_pos_category/i18n/nl_NL.po | 70 +++++++++++ pos_remove_pos_category/i18n/pl.po | 70 +++++++++++ .../i18n/pos_remove_pos_category.pot | 48 ++++++++ pos_remove_pos_category/i18n/pt_BR.po | 70 +++++++++++ pos_remove_pos_category/i18n/sk.po | 70 +++++++++++ pos_remove_pos_category/i18n/sl.po | 71 ++++++++++++ pos_remove_pos_category/i18n/sr@latin.po | 70 +++++++++++ pos_remove_pos_category/i18n/sv.po | 70 +++++++++++ pos_remove_pos_category/i18n/th.po | 70 +++++++++++ pos_remove_pos_category/i18n/tr.po | 70 +++++++++++ pos_remove_pos_category/i18n/tr_TR.po | 70 +++++++++++ pos_remove_pos_category/i18n/uk.po | 70 +++++++++++ pos_remove_pos_category/i18n/vi.po | 70 +++++++++++ pos_remove_pos_category/i18n/zh_CN.po | 70 +++++++++++ pos_remove_pos_category/i18n/zh_TW.po | 70 +++++++++++ pos_remove_pos_category/module.py | 67 +++++++++++ .../point_of_sale_view.xml | 19 +++ pos_remove_pos_category/product.py | 109 ++++++++++++++++++ .../static/src/js/pos_remove_pos_category.js | 44 +++++++ .../views/pos_category.xml | 41 +++++++ 56 files changed, 3715 insertions(+) create mode 100644 pos_remove_pos_category/README.rst create mode 100644 pos_remove_pos_category/__init__.py create mode 100644 pos_remove_pos_category/__openerp__.py create mode 100644 pos_remove_pos_category/i18n/ar.po create mode 100644 pos_remove_pos_category/i18n/bg.po create mode 100644 pos_remove_pos_category/i18n/bs.po create mode 100644 pos_remove_pos_category/i18n/ca.po create mode 100644 pos_remove_pos_category/i18n/cs.po create mode 100644 pos_remove_pos_category/i18n/da.po create mode 100644 pos_remove_pos_category/i18n/de.po create mode 100644 pos_remove_pos_category/i18n/en_GB.po create mode 100644 pos_remove_pos_category/i18n/es.po create mode 100644 pos_remove_pos_category/i18n/es_AR.po create mode 100644 pos_remove_pos_category/i18n/es_CO.po create mode 100644 pos_remove_pos_category/i18n/es_CR.po create mode 100644 pos_remove_pos_category/i18n/es_EC.po create mode 100644 pos_remove_pos_category/i18n/es_ES.po create mode 100644 pos_remove_pos_category/i18n/es_MX.po create mode 100644 pos_remove_pos_category/i18n/es_PE.po create mode 100644 pos_remove_pos_category/i18n/es_VE.po create mode 100644 pos_remove_pos_category/i18n/eu.po create mode 100644 pos_remove_pos_category/i18n/fa.po create mode 100644 pos_remove_pos_category/i18n/fi.po create mode 100644 pos_remove_pos_category/i18n/fr.po create mode 100644 pos_remove_pos_category/i18n/fr_CH.po create mode 100644 pos_remove_pos_category/i18n/he.po create mode 100644 pos_remove_pos_category/i18n/hr.po create mode 100644 pos_remove_pos_category/i18n/it.po create mode 100644 pos_remove_pos_category/i18n/ja.po create mode 100644 pos_remove_pos_category/i18n/lt.po create mode 100644 pos_remove_pos_category/i18n/lv.po create mode 100644 pos_remove_pos_category/i18n/mk.po create mode 100644 pos_remove_pos_category/i18n/mn.po create mode 100644 pos_remove_pos_category/i18n/nb.po create mode 100644 pos_remove_pos_category/i18n/nl.po create mode 100644 pos_remove_pos_category/i18n/nl_BE.po create mode 100644 pos_remove_pos_category/i18n/nl_NL.po create mode 100644 pos_remove_pos_category/i18n/pl.po create mode 100644 pos_remove_pos_category/i18n/pos_remove_pos_category.pot create mode 100644 pos_remove_pos_category/i18n/pt_BR.po create mode 100644 pos_remove_pos_category/i18n/sk.po create mode 100644 pos_remove_pos_category/i18n/sl.po create mode 100644 pos_remove_pos_category/i18n/sr@latin.po create mode 100644 pos_remove_pos_category/i18n/sv.po create mode 100644 pos_remove_pos_category/i18n/th.po create mode 100644 pos_remove_pos_category/i18n/tr.po create mode 100644 pos_remove_pos_category/i18n/tr_TR.po create mode 100644 pos_remove_pos_category/i18n/uk.po create mode 100644 pos_remove_pos_category/i18n/vi.po create mode 100644 pos_remove_pos_category/i18n/zh_CN.po create mode 100644 pos_remove_pos_category/i18n/zh_TW.po create mode 100644 pos_remove_pos_category/module.py create mode 100644 pos_remove_pos_category/point_of_sale_view.xml create mode 100644 pos_remove_pos_category/product.py create mode 100644 pos_remove_pos_category/static/src/js/pos_remove_pos_category.js create mode 100644 pos_remove_pos_category/views/pos_category.xml diff --git a/pos_remove_pos_category/README.rst b/pos_remove_pos_category/README.rst new file mode 100644 index 00000000..93c6eb74 --- /dev/null +++ b/pos_remove_pos_category/README.rst @@ -0,0 +1,62 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License + +POS Remove POS Category +======================= + +This module was written to replace POS categories by product categories +in the point of sale. + +Important notes +--------------- +- When the module is installed the link beetween products and POS categories + is **overwritten** by a link beetween products and product categories + (the link is the field pos_categ_id in the table product_template) +- When the module is uninstalled the link beetween products and POS categories + is restored in an **empty** state (NULL values) + +Installation +============ + +This module depends on the `point_of_sale` Odoo official module. + +Configuration +============= + +No configuration is needed just use product categories as standard +pos categories. +You may uncheck 'Available in the Point of Sale' field +in regular product categories if you want that a category becomes invisible +in POS. +Children categories will becomes invisible too, whatever their checkbox state. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + + +Credits +======= + +Contributors +------------ + +* Sylvain Calador + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/pos_remove_pos_category/__init__.py b/pos_remove_pos_category/__init__.py new file mode 100644 index 00000000..5f45a17f --- /dev/null +++ b/pos_remove_pos_category/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2015-TODAY Akretion (). +# +# 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 . +# +############################################################################## + +from . import product +from . import module diff --git a/pos_remove_pos_category/__openerp__.py b/pos_remove_pos_category/__openerp__.py new file mode 100644 index 00000000..0f1566f8 --- /dev/null +++ b/pos_remove_pos_category/__openerp__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# © 2016 Akretion (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# -*- encoding: utf-8 -*- + +{ + 'name': 'POS Remove POS Category', + 'version': '8.0.0.1.0', + 'author': 'Akretion, Odoo Community Association (OCA)', + 'category': 'Sales Management', + 'depends': [ + 'point_of_sale', + ], + 'demo': [], + 'website': 'https://www.akretion.com', + 'data': [ + 'point_of_sale_view.xml', + 'views/pos_category.xml', + ], + 'installable': True, + "license": "AGPL-3", + +} diff --git a/pos_remove_pos_category/i18n/ar.po b/pos_remove_pos_category/i18n/ar.po new file mode 100644 index 00000000..25685c40 --- /dev/null +++ b/pos_remove_pos_category/i18n/ar.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 05:46+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "متوفر في نقاط البيع" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "الصورة" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/bg.po b/pos_remove_pos_category/i18n/bg.po new file mode 100644 index 00000000..36aac38c --- /dev/null +++ b/pos_remove_pos_category/i18n/bg.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-pos-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Изображение" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/bs.po b/pos_remove_pos_category/i18n/bs.po new file mode 100644 index 00000000..44fdfb08 --- /dev/null +++ b/pos_remove_pos_category/i18n/bs.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-pos-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Slika" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/ca.po b/pos_remove_pos_category/i18n/ca.po new file mode 100644 index 00000000..cc6d38b3 --- /dev/null +++ b/pos_remove_pos_category/i18n/ca.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Mòdul" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/cs.po b/pos_remove_pos_category/i18n/cs.po new file mode 100644 index 00000000..b668e771 --- /dev/null +++ b/pos_remove_pos_category/i18n/cs.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-pos-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Obrázek" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/da.po b/pos_remove_pos_category/i18n/da.po new file mode 100644 index 00000000..dabc41f8 --- /dev/null +++ b/pos_remove_pos_category/i18n/da.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Billede" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/de.po b/pos_remove_pos_category/i18n/de.po new file mode 100644 index 00000000..1550e57f --- /dev/null +++ b/pos_remove_pos_category/i18n/de.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Bild" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Modul" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Produktkategorie" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/en_GB.po b/pos_remove_pos_category/i18n/en_GB.po new file mode 100644 index 00000000..b42c282f --- /dev/null +++ b/pos_remove_pos_category/i18n/en_GB.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-pos-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Image" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es.po b/pos_remove_pos_category/i18n/es.po new file mode 100644 index 00000000..b79882d6 --- /dev/null +++ b/pos_remove_pos_category/i18n/es.po @@ -0,0 +1,71 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +# Javier García-Panach , 2016 +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-15 14:51+0000\n" +"PO-Revision-Date: 2016-04-07 07:28+0000\n" +"Last-Translator: Javier García-Panach \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "Disponible en TPV" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "Disponible en el Punto de Venta" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "Marque esta casilla si desea que esta categoría aparezca en el Punto de Venta.\nSi se deja sin marcar, las categorías hijas también permanecerán invisibles, independientemente del estado de su casilla." + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "Imagen mediana" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Módulo" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "Mostrar imagen de categoría en vista formulario" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "Mostrar botón de imagen de categoría en TPV" diff --git a/pos_remove_pos_category/i18n/es_AR.po b/pos_remove_pos_category/i18n/es_AR.po new file mode 100644 index 00000000..b5a437be --- /dev/null +++ b/pos_remove_pos_category/i18n/es_AR.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-pos-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_CO.po b/pos_remove_pos_category/i18n/es_CO.po new file mode 100644 index 00000000..d531cccc --- /dev/null +++ b/pos_remove_pos_category/i18n/es_CO.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-pos-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_CR.po b/pos_remove_pos_category/i18n/es_CR.po new file mode 100644 index 00000000..7a5029b4 --- /dev/null +++ b/pos_remove_pos_category/i18n/es_CR.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_EC.po b/pos_remove_pos_category/i18n/es_EC.po new file mode 100644 index 00000000..b862982c --- /dev/null +++ b/pos_remove_pos_category/i18n/es_EC.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_ES.po b/pos_remove_pos_category/i18n/es_ES.po new file mode 100644 index 00000000..9ab13751 --- /dev/null +++ b/pos_remove_pos_category/i18n/es_ES.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-27 16:28+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-pos-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_MX.po b/pos_remove_pos_category/i18n/es_MX.po new file mode 100644 index 00000000..b54933d3 --- /dev/null +++ b/pos_remove_pos_category/i18n/es_MX.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-pos-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imágen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Módulo" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Categoria del producto" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_PE.po b/pos_remove_pos_category/i18n/es_PE.po new file mode 100644 index 00000000..ea7b439a --- /dev/null +++ b/pos_remove_pos_category/i18n/es_PE.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-pos-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/es_VE.po b/pos_remove_pos_category/i18n/es_VE.po new file mode 100644 index 00000000..7593c9af --- /dev/null +++ b/pos_remove_pos_category/i18n/es_VE.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Imagen" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/eu.po b/pos_remove_pos_category/i18n/eu.po new file mode 100644 index 00000000..fcd9de7d --- /dev/null +++ b/pos_remove_pos_category/i18n/eu.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-pos-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Irudia" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/fa.po b/pos_remove_pos_category/i18n/fa.po new file mode 100644 index 00000000..81033420 --- /dev/null +++ b/pos_remove_pos_category/i18n/fa.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-pos-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "تصویر" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/fi.po b/pos_remove_pos_category/i18n/fi.po new file mode 100644 index 00000000..5f0ea7f3 --- /dev/null +++ b/pos_remove_pos_category/i18n/fi.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/fr.po b/pos_remove_pos_category/i18n/fr.po new file mode 100644 index 00000000..3eb0223c --- /dev/null +++ b/pos_remove_pos_category/i18n/fr.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-24 07:13+0000\n" +"PO-Revision-Date: 2015-07-24 09:20+0100\n" +"Last-Translator: David BEAL \n" +"Language-Team: \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"X-Generator: Poedit 1.7.5\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "Disponible dans le PDV" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "Disponible dans le Point de Vente" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever " +"their checkbox state." +msgstr "" +"Cochez si vous voulez que cette catégorie apparaisse dans le Point de " +"Vente.\n" +"Si vous décochez, les catégories enfants deviendront invisible " +"également, quel que soit l'état de leur case à cocher." + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Module" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Catégorie de Produit" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Modèle d'article" diff --git a/pos_remove_pos_category/i18n/fr_CH.po b/pos_remove_pos_category/i18n/fr_CH.po new file mode 100644 index 00000000..bb428df1 --- /dev/null +++ b/pos_remove_pos_category/i18n/fr_CH.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-pos-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Template de produit" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/he.po b/pos_remove_pos_category/i18n/he.po new file mode 100644 index 00000000..808cbdea --- /dev/null +++ b/pos_remove_pos_category/i18n/he.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-pos-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "תמונה" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/hr.po b/pos_remove_pos_category/i18n/hr.po new file mode 100644 index 00000000..a16a8e8f --- /dev/null +++ b/pos_remove_pos_category/i18n/hr.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Slika" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Modul" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/it.po b/pos_remove_pos_category/i18n/it.po new file mode 100644 index 00000000..ef34fde5 --- /dev/null +++ b/pos_remove_pos_category/i18n/it.po @@ -0,0 +1,72 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +# Paolo Valier, 2016 +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-11-08 16:59+0000\n" +"Last-Translator: Paolo Valier\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "Disponibile nel Punto Vendita" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Immagine" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Modulo" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Categoria Prodotto" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Template Prodotto" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/ja.po b/pos_remove_pos_category/i18n/ja.po new file mode 100644 index 00000000..24460d61 --- /dev/null +++ b/pos_remove_pos_category/i18n/ja.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "イメージ" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/lt.po b/pos_remove_pos_category/i18n/lt.po new file mode 100644 index 00000000..039545ea --- /dev/null +++ b/pos_remove_pos_category/i18n/lt.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Paveikslėlis" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/lv.po b/pos_remove_pos_category/i18n/lv.po new file mode 100644 index 00000000..72296240 --- /dev/null +++ b/pos_remove_pos_category/i18n/lv.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Attēls" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/mk.po b/pos_remove_pos_category/i18n/mk.po new file mode 100644 index 00000000..e388e526 --- /dev/null +++ b/pos_remove_pos_category/i18n/mk.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Слика" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/mn.po b/pos_remove_pos_category/i18n/mn.po new file mode 100644 index 00000000..0d254771 --- /dev/null +++ b/pos_remove_pos_category/i18n/mn.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Зураг" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/nb.po b/pos_remove_pos_category/i18n/nb.po new file mode 100644 index 00000000..76f86722 --- /dev/null +++ b/pos_remove_pos_category/i18n/nb.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-pos-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Bilde" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/nl.po b/pos_remove_pos_category/i18n/nl.po new file mode 100644 index 00000000..2a9c5346 --- /dev/null +++ b/pos_remove_pos_category/i18n/nl.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 04:39+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Productcategorie" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/nl_BE.po b/pos_remove_pos_category/i18n/nl_BE.po new file mode 100644 index 00000000..13332687 --- /dev/null +++ b/pos_remove_pos_category/i18n/nl_BE.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-pos-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Afbeelding" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/nl_NL.po b/pos_remove_pos_category/i18n/nl_NL.po new file mode 100644 index 00000000..f6efe7ae --- /dev/null +++ b/pos_remove_pos_category/i18n/nl_NL.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-pos-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Module" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/pl.po b/pos_remove_pos_category/i18n/pl.po new file mode 100644 index 00000000..7be1c8b3 --- /dev/null +++ b/pos_remove_pos_category/i18n/pl.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-pos-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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Obraz" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/pos_remove_pos_category.pot b/pos_remove_pos_category/i18n/pos_remove_pos_category.pot new file mode 100644 index 00000000..be5c8f97 --- /dev/null +++ b/pos_remove_pos_category/i18n/pos_remove_pos_category.pot @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-24 07:13+0000\n" +"PO-Revision-Date: 2015-07-24 07:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + diff --git a/pos_remove_pos_category/i18n/pt_BR.po b/pos_remove_pos_category/i18n/pt_BR.po new file mode 100644 index 00000000..be91443a --- /dev/null +++ b/pos_remove_pos_category/i18n/pt_BR.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Módulo" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/sk.po b/pos_remove_pos_category/i18n/sk.po new file mode 100644 index 00000000..00cdcbe6 --- /dev/null +++ b/pos_remove_pos_category/i18n/sk.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-pos-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Obrázok" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/sl.po b/pos_remove_pos_category/i18n/sl.po new file mode 100644 index 00000000..4c4b2566 --- /dev/null +++ b/pos_remove_pos_category/i18n/sl.po @@ -0,0 +1,71 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-26 16:09+0000\n" +"PO-Revision-Date: 2016-04-24 06:24+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "Razpoložljivo v POS" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "Razpoložljivo v prodajni točki" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "Označite, če želite, da se ta kategorija pojavlja v prodajni točki.\nČe ni označeno, postanejo nevidne tudi podrejene kategorije, ne glede na stanje oznake v njih." + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Slika" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "Slika srednja" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Modul" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "Prikaz slike kategorije v obrazcu" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "Prikaz gumba slike kategorije v POS" diff --git a/pos_remove_pos_category/i18n/sr@latin.po b/pos_remove_pos_category/i18n/sr@latin.po new file mode 100644 index 00000000..06c61c11 --- /dev/null +++ b/pos_remove_pos_category/i18n/sr@latin.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-pos-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Slika" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/sv.po b/pos_remove_pos_category/i18n/sv.po new file mode 100644 index 00000000..938dd84b --- /dev/null +++ b/pos_remove_pos_category/i18n/sv.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Bild" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/th.po b/pos_remove_pos_category/i18n/th.po new file mode 100644 index 00000000..6bf11067 --- /dev/null +++ b/pos_remove_pos_category/i18n/th.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-pos-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "รูปภาพ" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/tr.po b/pos_remove_pos_category/i18n/tr.po new file mode 100644 index 00000000..fb9f1930 --- /dev/null +++ b/pos_remove_pos_category/i18n/tr.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 05:44+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Resim" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "Modül" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/tr_TR.po b/pos_remove_pos_category/i18n/tr_TR.po new file mode 100644 index 00000000..4fee4004 --- /dev/null +++ b/pos_remove_pos_category/i18n/tr_TR.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 05:41+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-pos-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/uk.po b/pos_remove_pos_category/i18n/uk.po new file mode 100644 index 00000000..798149ca --- /dev/null +++ b/pos_remove_pos_category/i18n/uk.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-pos-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Зображення" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/vi.po b/pos_remove_pos_category/i18n/vi.po new file mode 100644 index 00000000..d81b3ac6 --- /dev/null +++ b/pos_remove_pos_category/i18n/vi.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-pos-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "Hình ảnh" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/zh_CN.po b/pos_remove_pos_category/i18n/zh_CN.po new file mode 100644 index 00000000..cf5e9d69 --- /dev/null +++ b/pos_remove_pos_category/i18n/zh_CN.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-pos-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: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "图像" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/i18n/zh_TW.po b/pos_remove_pos_category/i18n/zh_TW.po new file mode 100644 index 00000000..a17d3950 --- /dev/null +++ b/pos_remove_pos_category/i18n/zh_TW.po @@ -0,0 +1,70 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_remove_pos_category +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: pos (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 01:07+0000\n" +"PO-Revision-Date: 2016-04-06 15:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-pos-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_remove_pos_category +#: view:product.category:pos_remove_pos_category.product_category_list_view +msgid "Available in POS" +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,available_in_pos:0 +msgid "Available in the Point of Sale" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,available_in_pos:0 +msgid "" +"Check if you want this category to appear in Point Of Sale.\n" +"If you uncheck, children categories will becomes invisible too, whatever their checkbox state." +msgstr "" + +#. module: pos_remove_pos_category +#: field:product.category,image:0 +msgid "Image" +msgstr "圖片" + +#. module: pos_remove_pos_category +#: field:product.category,image_medium:0 +msgid "Image medium" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_ir_module_module +msgid "Module" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_category +msgid "Product Category" +msgstr "" + +#. module: pos_remove_pos_category +#: model:ir.model,name:pos_remove_pos_category.model_product_template +msgid "Product Template" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image:0 +msgid "Show Image Category in Form View" +msgstr "" + +#. module: pos_remove_pos_category +#: help:product.category,image_medium:0 +msgid "Show image category button in POS" +msgstr "" diff --git a/pos_remove_pos_category/module.py b/pos_remove_pos_category/module.py new file mode 100644 index 00000000..d642fcdf --- /dev/null +++ b/pos_remove_pos_category/module.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2015-TODAY Akretion (). +# +# 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 . +# +############################################################################## + +from openerp import models, api + + +class Module(models.Model): + + _inherit = 'ir.module.module' + + @api.multi + def module_uninstall(self): + for module in self: + if module.name == 'pos_remove_pos_category': + + # As we have loose previous POS categs restore them + # in a sane empty state + self.env.cr.execute(''' + UPDATE product_template SET pos_categ_id=NULL; + ''') + + # And restore original constraint + self.env.cr.execute(''' + ALTER TABLE product_template + DROP CONSTRAINT IF EXISTS + product_template_pos_categ_id_fkey; + ''') + + self.env.cr.execute(''' + ALTER TABLE product_template ADD CONSTRAINT + "product_template_pos_categ_id_fkey" + FOREIGN KEY (pos_categ_id) + REFERENCES pos_category(id) ON DELETE SET NULL; + ''') + + # Restore POS category menu action + # in SQL because pool/env is not available here + self.env.cr.execute(''' + UPDATE ir_act_window iaw SET res_model='pos.category' + FROM ir_model_data imd + WHERE + iaw.id = imd.res_id AND + imd.model = 'ir.actions.act_window' AND + imd.name = 'product_pos_category_action'; + ''') + + break + + return super(Module, self).module_uninstall() diff --git a/pos_remove_pos_category/point_of_sale_view.xml b/pos_remove_pos_category/point_of_sale_view.xml new file mode 100644 index 00000000..29cb8281 --- /dev/null +++ b/pos_remove_pos_category/point_of_sale_view.xml @@ -0,0 +1,19 @@ + + + + + product.template.form.inherit + product.template + + + + + 1 + + + + + product.category + + + diff --git a/pos_remove_pos_category/product.py b/pos_remove_pos_category/product.py new file mode 100644 index 00000000..1396912a --- /dev/null +++ b/pos_remove_pos_category/product.py @@ -0,0 +1,109 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2015-TODAY Akretion (). +# +# 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 . +# +############################################################################## + +import sys +from openerp import models, fields, api, tools + + +class ProductTemplate(models.Model): + _inherit = 'product.template' + + pos_categ_id = fields.Many2one('product.category', + store=True, related='categ_id') + + @api.model + def create(self, vals): + vals['pos_categ_id'] = vals['categ_id'] + return super(ProductTemplate, self).create(vals) + + @api.multi + def write(self, vals): + if 'pos_categ_id' in vals and not vals['pos_categ_id']: + del vals['pos_categ_id'] + return super(ProductTemplate, self).write(vals) + + +class ProductCategory(models.Model): + _inherit = 'product.category' + + image = fields.Binary(help='Show Image Category in Form View') + image_medium = fields.Binary(help='Show image category button in POS', + compute="_compute_get_image", + inverse="_inverse_set_image", + store=True) + available_in_pos = fields.Boolean( + string="Available in the Point of Sale", + default=True, + help="Check if you want this category to appear in Point Of Sale.\n" + "If you uncheck, children categories will becomes invisible too, " + "whatever their checkbox state.") + + @api.multi + def _compute_get_image(self): + return dict( + (rec.id, tools.image_get_resized_images(rec.image)) for rec in + self) + + @api.multi + def _inverse_set_image(self): + self.ensure_one() + return self.write( + {'image': tools.image_resize_image_big(self.image_medium)}) + + +_auto_end_original = models.BaseModel._auto_end + + +def _auto_end(self, cr, context=None): + """ Create the foreign keys recorded by _auto_init. + (pos_remove_pos_category monkey patching) + """ + context = context or {} + # If the field is created by the user, there is no module. + module = context.get('module', False) + foreign_keys = [] + patched = 'openerp.addons.pos_remove_pos_category' in sys.modules + + for t, k, r, d in self._foreign_keys: + if patched and (t, k) == ('product_template', 'pos_categ_id'): + if module == 'pos_remove_pos_category': + cr.execute(''' + ALTER TABLE product_template + DROP CONSTRAINT IF EXISTS + product_template_pos_categ_id_fkey + ''') + cr.execute(''' + UPDATE product_template + SET pos_categ_id = categ_id; + ''') + cr.execute(''' + ALTER TABLE product_template ADD CONSTRAINT + "product_template_pos_categ_id_fkey" + FOREIGN KEY (pos_categ_id) + REFERENCES product_category(id) ON DELETE SET NULL; + ''') + continue + foreign_keys.append((t, k, r, d)) + self._foreign_keys = foreign_keys + return _auto_end_original(self, cr, context=context) + + +models.BaseModel._auto_end = _auto_end diff --git a/pos_remove_pos_category/static/src/js/pos_remove_pos_category.js b/pos_remove_pos_category/static/src/js/pos_remove_pos_category.js new file mode 100644 index 00000000..ed409ca5 --- /dev/null +++ b/pos_remove_pos_category/static/src/js/pos_remove_pos_category.js @@ -0,0 +1,44 @@ +/****************************************************************************** + * Point Of Sale - Pricelist for POS Odoo + * Copyright (C) 2015-TODAY Akretion (http://www.akretion.com) + * @author Sylvain Calador + * + * 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 . + * + ******************************************************************************/ + +openerp.pos_remove_pos_category = function(instance, local) { + module = instance.point_of_sale; + + var initialize_original = module.PosModel.prototype.initialize; + module.PosModel = module.PosModel.extend({ + + initialize: function(session, attributes) { + + for (var i = 0 ; i < this.models.length; i++){ + if (this.models[i].model == 'pos.category') { + this.models[i].model = 'product.category'; + this.models[i].domain = [['available_in_pos', '=', true]]; + } + } + return initialize_original.call(this, session, attributes); + } + }); + + //override method js POS (widgets.js) + //change pos.category by product.category + module.ProductCategoriesWidget = module.ProductCategoriesWidget.extend({ + get_image_url: function(category){ + return window.location.origin + '/web/binary/image?model=product.category&field=image_medium&id='+category.id; + } + }); +}; diff --git a/pos_remove_pos_category/views/pos_category.xml b/pos_remove_pos_category/views/pos_category.xml new file mode 100644 index 00000000..f904ea8a --- /dev/null +++ b/pos_remove_pos_category/views/pos_category.xml @@ -0,0 +1,41 @@ + + + + + + + product.category + + + 20 + + + + + +
+ +
+
+
+
+ + + product.category + + + + + + + +
+