mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
@@ -0,0 +1 @@
|
||||
../../../../stock_inventory_preparation_filter
|
||||
6
setup/stock_inventory_preparation_filter/setup.py
Normal file
6
setup/stock_inventory_preparation_filter/setup.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
92
stock_inventory_preparation_filter/README.rst
Normal file
92
stock_inventory_preparation_filter/README.rst
Normal file
@@ -0,0 +1,92 @@
|
||||
======================================
|
||||
Extended Inventory Preparation Filters
|
||||
======================================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_inventory_preparation_filter
|
||||
:alt: OCA/stock-logistics-warehouse
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-13-0/stock-logistics-warehouse-13-0-stock_inventory_preparation_filter
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/153/13.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
Includes more options for making an inventory out of:
|
||||
|
||||
* Products filtered by a domain.
|
||||
* Products of a category.
|
||||
* Multiple lots
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* The widget domain is not displayed correctly, but this issue is related to
|
||||
Odoo. To avoid this malfunction, use the keyboard arrows to properly work
|
||||
with the domain option.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/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 <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_inventory_preparation_filter%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* AvanzOSC
|
||||
* Tecnativa
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* `Tecnativa <https://www.tecnativa.com>`__:
|
||||
|
||||
* Pedro M. Baeza
|
||||
* David Vidal
|
||||
* Sergio Teruel
|
||||
|
||||
* Xavier Jimenez <xavier.jimenez@qubiq.es>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_inventory_preparation_filter>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
1
stock_inventory_preparation_filter/__init__.py
Normal file
1
stock_inventory_preparation_filter/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import models
|
||||
17
stock_inventory_preparation_filter/__manifest__.py
Normal file
17
stock_inventory_preparation_filter/__manifest__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Copyright 2015 AvanzOSC - Oihane Crucelaegi
|
||||
# Copyright 2015 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2017 Tecnativa - David Vidal
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Extended Inventory Preparation Filters",
|
||||
"version": "14.0.1.0.0",
|
||||
"depends": ["stock"],
|
||||
"author": "AvanzOSC," "Tecnativa," "Odoo Community Association (OCA)",
|
||||
"category": "Inventory, Logistic, Storage",
|
||||
"website": "https://github.com/OCA/stock-logistics-warehouse",
|
||||
"summary": "More filters for inventory adjustments",
|
||||
"data": ["views/stock_inventory_view.xml"],
|
||||
"installable": True,
|
||||
"license": "AGPL-3",
|
||||
}
|
||||
94
stock_inventory_preparation_filter/i18n/am.po
Normal file
94
stock_inventory_preparation_filter/i18n/am.po
Normal file
@@ -0,0 +1,94 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/ar.po
Normal file
101
stock_inventory_preparation_filter/i18n/ar.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "أنشئ بواسطة"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "أنشئ في"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "اسم العرض"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "المعرف"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "آخر تعديل في"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "آخر تحديث في"
|
||||
100
stock_inventory_preparation_filter/i18n/bg.po
Normal file
100
stock_inventory_preparation_filter/i18n/bg.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Създадено от"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Създадено на"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Име за Показване"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последно обновено на"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последно обновено от"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последно обновено на"
|
||||
101
stock_inventory_preparation_filter/i18n/bs.po
Normal file
101
stock_inventory_preparation_filter/i18n/bs.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreirano"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Prikaži naziv"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje mijenjano"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnji ažurirao"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnje ažurirano"
|
||||
103
stock_inventory_preparation_filter/i18n/ca.po
Normal file
103
stock_inventory_preparation_filter/i18n/ca.po
Normal file
@@ -0,0 +1,103 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creat per"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creat el"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Veure el nom"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Darrera modificació el"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Darrera Actualització per"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Darrera Actualització el"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantitat"
|
||||
100
stock_inventory_preparation_filter/i18n/cs.po
Normal file
100
stock_inventory_preparation_filter/i18n/cs.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Vytvořil(a)"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Vytvořeno"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Zobrazovaný název"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
86
stock_inventory_preparation_filter/i18n/cs_CZ.po
Normal file
86
stock_inventory_preparation_filter/i18n/cs_CZ.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# Lukáš Spurný <lukasspurny8@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n"
|
||||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/cs_CZ/)\n"
|
||||
"Language: cs_CZ\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventář"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventář"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Inventory"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Inventář"
|
||||
100
stock_inventory_preparation_filter/i18n/da.po
Normal file
100
stock_inventory_preparation_filter/i18n/da.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Oprettet af"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Oprettet den"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Vist navn"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Id"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sidst ændret den"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Sidst opdateret af"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Sidst opdateret den"
|
||||
121
stock_inventory_preparation_filter/i18n/de.po
Normal file
121
stock_inventory_preparation_filter/i18n/de.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Produkte"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Ausgewählte Produkte"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Bestand"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Bestand"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "Lose"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "Ausgewählte Kategorien"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "Ausgewählte Lose"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "Positionen sammeln"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Angelegt durch"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Angelegt am"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Anzeigename"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "Leere Liste"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Inventory"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Bestand"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zuletzt geändert am"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zuletzt aktualisiert durch"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "Produktschlüssel"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Menge"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "Ausgewählte Produkte"
|
||||
98
stock_inventory_preparation_filter/i18n/el_GR.po
Normal file
98
stock_inventory_preparation_filter/i18n/el_GR.po
Normal file
@@ -0,0 +1,98 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
||||
"el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Κωδικός"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Ποσότητα"
|
||||
101
stock_inventory_preparation_filter/i18n/en_GB.po
Normal file
101
stock_inventory_preparation_filter/i18n/en_GB.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Created by"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Created on"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Display Name"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Last Modified on"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Last Updated by"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Last Updated on"
|
||||
121
stock_inventory_preparation_filter/i18n/es.po
Normal file
121
stock_inventory_preparation_filter/i18n/es.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "Categorias"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Productos seleccionados"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "Lotes"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "Categorias seleccionadas"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "Lotes seleccionados"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "Líneas capturadas"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado el"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "Lista vacía"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Inventory"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Inventario"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Actualizado por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Actualizado el"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "Codigo de producto"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Cantidad"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "Productos seleccionados"
|
||||
101
stock_inventory_preparation_filter/i18n/es_AR.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_AR.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Mostrar Nombre"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización realizada por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización el"
|
||||
101
stock_inventory_preparation_filter/i18n/es_CL.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_CL.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID (identificación)"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_CO.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_CO.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre Público"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificación el"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Actualizado por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Actualizado"
|
||||
95
stock_inventory_preparation_filter/i18n/es_CR.po
Normal file
95
stock_inventory_preparation_filter/i18n/es_CR.po
Normal file
@@ -0,0 +1,95 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_DO.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_DO.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_EC.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_EC.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID (identificación)"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_ES.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_ES.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre para mostrar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_MX.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_MX.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre desplegado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modificacion realizada"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualizacion por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización realizada"
|
||||
101
stock_inventory_preparation_filter/i18n/es_PE.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_PE.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre a Mostrar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima Modificación en"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Actualizado última vez por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima Actualización"
|
||||
95
stock_inventory_preparation_filter/i18n/es_PY.po
Normal file
95
stock_inventory_preparation_filter/i18n/es_PY.po
Normal file
@@ -0,0 +1,95 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización en"
|
||||
101
stock_inventory_preparation_filter/i18n/es_VE.po
Normal file
101
stock_inventory_preparation_filter/i18n/es_VE.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Mostrar nombre"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificada por última vez"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización realizada por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualizacion en"
|
||||
100
stock_inventory_preparation_filter/i18n/et.po
Normal file
100
stock_inventory_preparation_filter/i18n/et.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Loonud"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Loodud"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Näidatav nimi"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimati muudetud"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Viimati uuendatud"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Viimati uuendatud"
|
||||
97
stock_inventory_preparation_filter/i18n/eu.po
Normal file
97
stock_inventory_preparation_filter/i18n/eu.po
Normal file
@@ -0,0 +1,97 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Nork sortua"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Created on"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Izena erakutsi"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Last Updated by"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Last Updated on"
|
||||
100
stock_inventory_preparation_filter/i18n/fa.po
Normal file
100
stock_inventory_preparation_filter/i18n/fa.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "ایجاد شده توسط"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "ایجاد شده در"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "نام نمایشی"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "شناسه"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "آخرین به روز رسانی در"
|
||||
103
stock_inventory_preparation_filter/i18n/fi.po
Normal file
103
stock_inventory_preparation_filter/i18n/fi.po
Normal file
@@ -0,0 +1,103 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Luonut"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Luotu"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nimi"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimeksi muokattu"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Viimeksi päivitetty"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Määrä"
|
||||
122
stock_inventory_preparation_filter/i18n/fr.po
Normal file
122
stock_inventory_preparation_filter/i18n/fr.po
Normal file
@@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
# Quentin THEURET <odoo@kerpeo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Tous les produits"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Produits filtrés"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventaire"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventaire"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "Lots"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "Catégories sélectionnées"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "Lots sélectionnés"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "Lignes extraites"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Créé par"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Display Name"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "Liste vide"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "stock.inventory.line.empty"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "stock.inventory.line.empty"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Last Modified on"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Dernière màj par"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Dernière màj le"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "Code produit"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantité"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "Produits sélectionnés"
|
||||
98
stock_inventory_preparation_filter/i18n/fr_CA.po
Normal file
98
stock_inventory_preparation_filter/i18n/fr_CA.po
Normal file
@@ -0,0 +1,98 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
|
||||
"fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Créé par"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Afficher le nom"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Identifiant"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Dernière mise à jour par"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Dernière mise à jour le"
|
||||
101
stock_inventory_preparation_filter/i18n/fr_CH.po
Normal file
101
stock_inventory_preparation_filter/i18n/fr_CH.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
|
||||
"teams/23907/fr_CH/)\n"
|
||||
"Language: fr_CH\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Créé par"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nom affiché"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Modifié par"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Modifié le"
|
||||
83
stock_inventory_preparation_filter/i18n/fr_FR.po
Normal file
83
stock_inventory_preparation_filter/i18n/fr_FR.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/"
|
||||
"fr_FR/)\n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantité"
|
||||
100
stock_inventory_preparation_filter/i18n/gl.po
Normal file
100
stock_inventory_preparation_filter/i18n/gl.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "ültima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Cantidade"
|
||||
83
stock_inventory_preparation_filter/i18n/gl_ES.po
Normal file
83
stock_inventory_preparation_filter/i18n/gl_ES.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"gl_ES/)\n"
|
||||
"Language: gl_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
100
stock_inventory_preparation_filter/i18n/he.po
Normal file
100
stock_inventory_preparation_filter/i18n/he.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "נוצר על ידי"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "נוצר ב-"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "השם המוצג"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "מזהה"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "עודכן לאחרונה על"
|
||||
104
stock_inventory_preparation_filter/i18n/hr.po
Normal file
104
stock_inventory_preparation_filter/i18n/hr.po
Normal file
@@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreirano"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Naziv "
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje modificirano"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnji ažurirao"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnje ažuriranje"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Količina"
|
||||
105
stock_inventory_preparation_filter/i18n/hr_HR.po
Normal file
105
stock_inventory_preparation_filter/i18n/hr_HR.po
Normal file
@@ -0,0 +1,105 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"hr_HR/)\n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreirano"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Naziv"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje modificirano"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnji ažurirao"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnje ažurirano"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Količina"
|
||||
100
stock_inventory_preparation_filter/i18n/hu.po
Normal file
100
stock_inventory_preparation_filter/i18n/hu.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Készítette"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Létrehozás dátuma"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Név megjelenítése"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Utoljára frissítve, által"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Utoljára frissítve "
|
||||
100
stock_inventory_preparation_filter/i18n/id.po
Normal file
100
stock_inventory_preparation_filter/i18n/id.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Dibuat oleh"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Dibuat pada"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nama Tampilan"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Diperbaharui oleh"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Diperbaharui pada"
|
||||
109
stock_inventory_preparation_filter/i18n/it.po
Normal file
109
stock_inventory_preparation_filter/i18n/it.po
Normal file
@@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creato da"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creato il"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome da visualizzare"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Inventory"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Inventario"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modifica il"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantità"
|
||||
100
stock_inventory_preparation_filter/i18n/ja.po
Normal file
100
stock_inventory_preparation_filter/i18n/ja.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "作成者"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "作成日"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "表示名"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最終更新日"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "最終更新者"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "最終更新日"
|
||||
100
stock_inventory_preparation_filter/i18n/ko.po
Normal file
100
stock_inventory_preparation_filter/i18n/ko.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "작성자"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "작성일"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "표시 이름"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "최근 수정"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "최근 갱신한 사람"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "최근 갱신 날짜"
|
||||
101
stock_inventory_preparation_filter/i18n/lt.po
Normal file
101
stock_inventory_preparation_filter/i18n/lt.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Sukūrė"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Sukurta"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Paskutinį kartą keista"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Paskutinį kartą atnaujinta"
|
||||
96
stock_inventory_preparation_filter/i18n/lt_LT.po
Normal file
96
stock_inventory_preparation_filter/i18n/lt_LT.po
Normal file
@@ -0,0 +1,96 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
|
||||
"teams/23907/lt_LT/)\n"
|
||||
"Language: lt_LT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Sukūrė"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Sukurta"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Paskutinį kartą atnaujinta"
|
||||
95
stock_inventory_preparation_filter/i18n/lv.po
Normal file
95
stock_inventory_preparation_filter/i18n/lv.po
Normal file
@@ -0,0 +1,95 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Izveidoja"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Izveidots"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Pēdējās izmaiņas"
|
||||
100
stock_inventory_preparation_filter/i18n/mk.po
Normal file
100
stock_inventory_preparation_filter/i18n/mk.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Креирано од"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Креирано на"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Прикажи име"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последна промена на"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последно ажурирање од"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последно ажурирање на"
|
||||
100
stock_inventory_preparation_filter/i18n/mn.po
Normal file
100
stock_inventory_preparation_filter/i18n/mn.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Үүсгэгч"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Үүсгэсэн"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
101
stock_inventory_preparation_filter/i18n/nb.po
Normal file
101
stock_inventory_preparation_filter/i18n/nb.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
||||
"nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Opprettet av"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Opprettet den"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Visnings navn"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist oppdatert "
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Sist oppdatert av"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Sist oppdatert"
|
||||
101
stock_inventory_preparation_filter/i18n/nb_NO.po
Normal file
101
stock_inventory_preparation_filter/i18n/nb_NO.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nb_NO/)\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Laget av"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Laget den"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Vis navn"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist endret den"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Sist oppdatert av"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Sist oppdatert den"
|
||||
103
stock_inventory_preparation_filter/i18n/nl.po
Normal file
103
stock_inventory_preparation_filter/i18n/nl.po
Normal file
@@ -0,0 +1,103 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Aangemaakt door"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Aangemaakt op"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Weergave naam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst gewijzigd op"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Hoeveelheid"
|
||||
104
stock_inventory_preparation_filter/i18n/nl_BE.po
Normal file
104
stock_inventory_preparation_filter/i18n/nl_BE.po
Normal file
@@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Gemaakt door"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Gemaakt op"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Schermnaam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst Aangepast op"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Hoeveelheid"
|
||||
104
stock_inventory_preparation_filter/i18n/nl_NL.po
Normal file
104
stock_inventory_preparation_filter/i18n/nl_NL.po
Normal file
@@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Aangemaakt door"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Aangemaakt op"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Weergavenaam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst gewijzigd op"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Aantal"
|
||||
102
stock_inventory_preparation_filter/i18n/pl.po
Normal file
102
stock_inventory_preparation_filter/i18n/pl.po
Normal file
@@ -0,0 +1,102 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
|
||||
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Utworzone przez"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Utworzono"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Wyświetlana nazwa "
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ostatnia zmiana"
|
||||
103
stock_inventory_preparation_filter/i18n/pt.po
Normal file
103
stock_inventory_preparation_filter/i18n/pt.po
Normal file
@@ -0,0 +1,103 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificado a última vez por"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Atualizado pela última vez por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Atualizado pela última vez em"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantidade"
|
||||
121
stock_inventory_preparation_filter/i18n/pt_BR.po
Normal file
121
stock_inventory_preparation_filter/i18n/pt_BR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2019-11-24 19:58+0000\n"
|
||||
"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Produtos"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "Categorias"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr "Domínio"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Produtos Filtrados"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventário"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventário"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "Lotes"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "Categorias Selecionadas"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "Lotes selecionados"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "Linhas capturadas"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Exibir Nome"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "Lista vazia"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Linha Vazia do Inventário"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificação em"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última atualização por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última atualização em"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "Código do Produto"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Quantidade"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "Produtos Selecionados"
|
||||
101
stock_inventory_preparation_filter/i18n/pt_PT.po
Normal file
101
stock_inventory_preparation_filter/i18n/pt_PT.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome a Apresentar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificação Em"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Atualizado pela última vez por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Atualizado pela última vez em"
|
||||
104
stock_inventory_preparation_filter/i18n/ro.po
Normal file
104
stock_inventory_preparation_filter/i18n/ro.po
Normal file
@@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creat de"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creat la"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nume Afişat"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima actualizare în"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualizare la"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Cantitate"
|
||||
99
stock_inventory_preparation_filter/i18n/ru.po
Normal file
99
stock_inventory_preparation_filter/i18n/ru.po
Normal file
@@ -0,0 +1,99 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Создано"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Создан"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последний раз обновлено"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последний раз обновлено"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Кол-во"
|
||||
100
stock_inventory_preparation_filter/i18n/sk.po
Normal file
100
stock_inventory_preparation_filter/i18n/sk.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Vytvoril"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Vytvorené"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Zobraziť meno"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Posledná modifikácia"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Naposledy upravoval"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Naposledy upravované"
|
||||
122
stock_inventory_preparation_filter/i18n/sl.po
Normal file
122
stock_inventory_preparation_filter/i18n/sl.po
Normal file
@@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Proizvodi"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "Kategorije"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Izbrani proizvodi"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "Inventar"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "Inventar"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "Loti"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "Izbrane kategorije"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "Izbrani loti"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "Zajem postavk"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Ustvaril"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Ustvarjeno"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Prikazni naziv"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "Prazen seznam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Inventory"
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "Inventar"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnji posodobil"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "Koda proizvoda"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Količina"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "Izbrani proizvodi"
|
||||
86
stock_inventory_preparation_filter/i18n/sr.po
Normal file
86
stock_inventory_preparation_filter/i18n/sr.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreiran"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
102
stock_inventory_preparation_filter/i18n/sr@latin.po
Normal file
102
stock_inventory_preparation_filter/i18n/sr@latin.po
Normal file
@@ -0,0 +1,102 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr"
|
||||
"%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreiran"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Ime za prikaz"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
@@ -0,0 +1,74 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 13.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
100
stock_inventory_preparation_filter/i18n/sv.po
Normal file
100
stock_inventory_preparation_filter/i18n/sv.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Skapad av"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Skapad den"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Visa namn"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Senast redigerad"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Senast uppdaterad av"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Senast uppdaterad"
|
||||
100
stock_inventory_preparation_filter/i18n/th.po
Normal file
100
stock_inventory_preparation_filter/i18n/th.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "สร้างโดย"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "สร้างเมื่อ"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "รหัส"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
100
stock_inventory_preparation_filter/i18n/tr.po
Normal file
100
stock_inventory_preparation_filter/i18n/tr.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Oluşturan"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Oluşturuldu"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Görünen İsim"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Son değişiklik"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Son güncelleyen"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Son güncelleme"
|
||||
104
stock_inventory_preparation_filter/i18n/tr_TR.po
Normal file
104
stock_inventory_preparation_filter/i18n/tr_TR.po
Normal file
@@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||
"tr_TR/)\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "Ürünler"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "Ürünler"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Oluşturan"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Oluşturulma tarihi"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Görünen ad"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Kimlik"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "En son güncelleme tarihi"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "En son güncelleyen "
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "En son güncelleme tarihi"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "Miktar"
|
||||
101
stock_inventory_preparation_filter/i18n/uk.po
Normal file
101
stock_inventory_preparation_filter/i18n/uk.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Створив"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Дата створення"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Назва для відображення"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Остання модифікація"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Востаннє оновив"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Останнє оновлення"
|
||||
100
stock_inventory_preparation_filter/i18n/vi.po
Normal file
100
stock_inventory_preparation_filter/i18n/vi.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Được tạo bởi"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Được tạo vào"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Tên hiển thị"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sửa lần cuối vào"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Last Updated by"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Cập nhật lần cuối vào"
|
||||
95
stock_inventory_preparation_filter/i18n/vi_VN.po
Normal file
95
stock_inventory_preparation_filter/i18n/vi_VN.po
Normal file
@@ -0,0 +1,95 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
|
||||
"teams/23907/vi_VN/)\n"
|
||||
"Language: vi_VN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Tạo bởi"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Tạo vào"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Cập nhật lần cuối vào"
|
||||
121
stock_inventory_preparation_filter/i18n/zh_CN.po
Normal file
121
stock_inventory_preparation_filter/i18n/zh_CN.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2019-09-28 09:24+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "All products"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr "分类"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr "已选定产品"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr "库存"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
#, fuzzy
|
||||
msgid "Inventory of"
|
||||
msgstr "库存"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr "批次"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr "已选定分类"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr "已选定批次"
|
||||
|
||||
#~ msgid "Capture Lines"
|
||||
#~ msgstr "获取行"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "创建者"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "创建时间"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "显示名称"
|
||||
|
||||
#~ msgid "Empty list"
|
||||
#~ msgstr "空列表"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Inventory Line Empty"
|
||||
#~ msgstr "库存行空"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最后修改时间"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "最后更新者"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "最后更新时间"
|
||||
|
||||
#~ msgid "Product Code"
|
||||
#~ msgstr "产品代码"
|
||||
|
||||
#~ msgid "Quantity"
|
||||
#~ msgstr "数量"
|
||||
|
||||
#~ msgid "Selected Products"
|
||||
#~ msgstr "已选定产品"
|
||||
101
stock_inventory_preparation_filter/i18n/zh_TW.po
Normal file
101
stock_inventory_preparation_filter/i18n/zh_TW.po
Normal file
@@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_inventory_preparation_filter
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-27 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-02-27 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_TW/)\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__categ_ids
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__product_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Filtered Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,help:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
msgid ""
|
||||
"If you do an entire inventory, you can choose 'All Products' and it will "
|
||||
"prefill the inventory with the current stock. If you only do some products "
|
||||
"(e.g. Cycle Counting) you can choose 'Manual Selection of Products' and the "
|
||||
"system won't propose anything. You can also let the system propose for a "
|
||||
"single product / lot /... "
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model,name:stock_inventory_preparation_filter.model_stock_inventory
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__filter
|
||||
#: model_terms:ir.ui.view,arch_db:stock_inventory_preparation_filter.view_inventory_form
|
||||
msgid "Inventory of"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: model:ir.model.fields,field_description:stock_inventory_preparation_filter.field_stock_inventory__lot_ids
|
||||
msgid "Lots"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_inventory_preparation_filter
|
||||
#: code:addons/stock_inventory_preparation_filter/models/stock_inventory.py:0
|
||||
#, python-format
|
||||
msgid "Selected Lots"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "建立者"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "建立於"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "顯示名稱"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "編號"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最後修改:"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "最後更新:"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "最後更新於"
|
||||
1
stock_inventory_preparation_filter/models/__init__.py
Normal file
1
stock_inventory_preparation_filter/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import stock_inventory
|
||||
69
stock_inventory_preparation_filter/models/stock_inventory.py
Normal file
69
stock_inventory_preparation_filter/models/stock_inventory.py
Normal file
@@ -0,0 +1,69 @@
|
||||
# Copyright 2015 AvanzOSC - Oihane Crucelaegi
|
||||
# Copyright 2015 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2020 Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
|
||||
class StockInventory(models.Model):
|
||||
_inherit = "stock.inventory"
|
||||
|
||||
@api.model
|
||||
def _selection_filter(self):
|
||||
"""Get the list of filter allowed according to the options checked
|
||||
in 'Settings / Warehouse'."""
|
||||
res_filter = [
|
||||
("products", _("All products")),
|
||||
("categories", _("Selected Categories")),
|
||||
("domain", _("Filtered Products")),
|
||||
]
|
||||
if self.user_has_groups("stock.group_production_lot"):
|
||||
res_filter.insert(-1, ("lots", _("Selected Lots")))
|
||||
return res_filter
|
||||
|
||||
filter = fields.Selection(
|
||||
string="Inventory of",
|
||||
selection="_selection_filter",
|
||||
required=True,
|
||||
default="products",
|
||||
help="If you do an entire inventory, you can choose 'All Products' and "
|
||||
"it will prefill the inventory with the current stock. If you "
|
||||
"only do some products (e.g. Cycle Counting) you can choose "
|
||||
"'Manual Selection of Products' and the system won't propose "
|
||||
"anything. You can also let the system propose for a single "
|
||||
"product / lot /... ",
|
||||
)
|
||||
categ_ids = fields.Many2many(
|
||||
comodel_name="product.category",
|
||||
relation="rel_inventories_categories",
|
||||
column1="inventory_id",
|
||||
column2="category_id",
|
||||
string="Categories",
|
||||
)
|
||||
lot_ids = fields.Many2many(
|
||||
comodel_name="stock.production.lot",
|
||||
relation="rel_inventories_lots",
|
||||
column1="inventory_id",
|
||||
column2="lot_id",
|
||||
string="Lots",
|
||||
)
|
||||
product_domain = fields.Char("Domain", default=[("name", "ilike", "")])
|
||||
|
||||
def _action_start(self):
|
||||
Product = self.env["product.product"]
|
||||
for inventory in self:
|
||||
products = Product.browse()
|
||||
if inventory.state != "draft":
|
||||
continue
|
||||
if inventory.filter == "categories":
|
||||
products = Product.search([("categ_id", "in", inventory.categ_ids.ids)])
|
||||
if inventory.filter == "lots":
|
||||
products = inventory.lot_ids.mapped("product_id")
|
||||
if inventory.filter == "domain":
|
||||
domain = safe_eval(inventory.product_domain)
|
||||
products = Product.search(domain)
|
||||
if products:
|
||||
inventory.product_ids = [(6, 0, products.ids)]
|
||||
return super()._action_start()
|
||||
@@ -0,0 +1,9 @@
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* `Tecnativa <https://www.tecnativa.com>`__:
|
||||
|
||||
* Pedro M. Baeza
|
||||
* David Vidal
|
||||
* Sergio Teruel
|
||||
|
||||
* Xavier Jimenez <xavier.jimenez@qubiq.es>
|
||||
* Iván Todorovich <ivan.todorovich@gmail.com>
|
||||
@@ -0,0 +1,5 @@
|
||||
Includes more options for making an inventory out of:
|
||||
|
||||
* Products filtered by a domain.
|
||||
* Products of a category.
|
||||
* Multiple lots
|
||||
BIN
stock_inventory_preparation_filter/static/description/icon.png
Normal file
BIN
stock_inventory_preparation_filter/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
441
stock_inventory_preparation_filter/static/description/index.html
Normal file
441
stock_inventory_preparation_filter/static/description/index.html
Normal file
@@ -0,0 +1,441 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||
<title>Extended Inventory Preparation Filters</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="extended-inventory-preparation-filters">
|
||||
<h1 class="title">Extended Inventory Preparation Filters</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_inventory_preparation_filter"><img alt="OCA/stock-logistics-warehouse" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/stock-logistics-warehouse-13-0/stock-logistics-warehouse-13-0-stock_inventory_preparation_filter"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/153/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>Includes more options for making an inventory out of:</p>
|
||||
<ul class="simple">
|
||||
<li>Products filtered by a domain.</li>
|
||||
<li>Products of a category.</li>
|
||||
<li>Multiple lots</li>
|
||||
</ul>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#known-issues-roadmap" id="id1">Known issues / Roadmap</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#id1">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>The widget domain is not displayed correctly, but this issue is related to
|
||||
Odoo. To avoid this malfunction, use the keyboard arrows to properly work
|
||||
with the domain option.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_inventory_preparation_filter%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>AvanzOSC</li>
|
||||
<li>Tecnativa</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Oihane Crucelaegui <<a class="reference external" href="mailto:oihanecrucelaegi@avanzosc.es">oihanecrucelaegi@avanzosc.es</a>></li>
|
||||
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
|
||||
<li>Pedro M. Baeza</li>
|
||||
<li>David Vidal</li>
|
||||
<li>Sergio Teruel</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Xavier Jimenez <<a class="reference external" href="mailto:xavier.jimenez@qubiq.es">xavier.jimenez@qubiq.es</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/13.0/stock_inventory_preparation_filter">OCA/stock-logistics-warehouse</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
stock_inventory_preparation_filter/tests/__init__.py
Normal file
1
stock_inventory_preparation_filter/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_stock_inventory_preparation_filter
|
||||
@@ -0,0 +1,131 @@
|
||||
# Copyright 2015 AvanzOSC - Oihane Crucelaegi
|
||||
# Copyright 2015 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2020 Iván Todorovich
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
@common.tagged("-at_install", "post_install")
|
||||
class TestStockInventoryPreparationFilterCategories(common.TransactionCase):
|
||||
def setUp(self):
|
||||
super(TestStockInventoryPreparationFilterCategories, self).setUp()
|
||||
self.inventory_model = self.env["stock.inventory"]
|
||||
self.location = self.env.ref("stock.stock_location_stock")
|
||||
self.Product = self.env["product.product"]
|
||||
self.Category = self.env["product.category"]
|
||||
# Create some categories
|
||||
self.category = self.Category.create({"name": "Category for inventory"})
|
||||
self.category2 = self.Category.create({"name": "Category for inventory 2"})
|
||||
# Create some products in the category
|
||||
self.product1 = self.Product.create(
|
||||
{
|
||||
"name": "Product for inventory 1",
|
||||
"type": "product",
|
||||
"categ_id": self.category.id,
|
||||
"default_code": "PROD1-TEST",
|
||||
}
|
||||
)
|
||||
self.product2 = self.Product.create(
|
||||
{
|
||||
"name": "Product for inventory 2",
|
||||
"type": "product",
|
||||
"categ_id": self.category.id,
|
||||
"default_code": "PROD2-TEST",
|
||||
}
|
||||
)
|
||||
self.product3 = self.Product.create(
|
||||
{
|
||||
"name": "Product for inventory 3",
|
||||
"type": "product",
|
||||
"categ_id": self.category.id,
|
||||
"default_code": "PROD3-TEST",
|
||||
}
|
||||
)
|
||||
self.product_lot = self.Product.create(
|
||||
{
|
||||
"name": "Product for inventory with lots",
|
||||
"type": "product",
|
||||
"categ_id": self.category2.id,
|
||||
}
|
||||
)
|
||||
self.lot = self.env["stock.production.lot"].create(
|
||||
{
|
||||
"name": "Lot test",
|
||||
"product_id": self.product_lot.id,
|
||||
"company_id": self.env.user.company_id.id,
|
||||
}
|
||||
)
|
||||
# Add quants for products to ensure that inventory lines are created
|
||||
self.env["stock.quant"].create(
|
||||
[
|
||||
{
|
||||
"product_id": self.product1.id,
|
||||
"product_uom_id": self.product1.uom_id.id,
|
||||
"location_id": self.location.id,
|
||||
"quantity": 2.0,
|
||||
},
|
||||
{
|
||||
"product_id": self.product2.id,
|
||||
"product_uom_id": self.product2.uom_id.id,
|
||||
"location_id": self.location.id,
|
||||
"quantity": 2.0,
|
||||
},
|
||||
{
|
||||
"product_id": self.product3.id,
|
||||
"product_uom_id": self.product3.uom_id.id,
|
||||
"location_id": self.location.id,
|
||||
"quantity": 2.0,
|
||||
},
|
||||
{
|
||||
"product_id": self.product_lot.id,
|
||||
"product_uom_id": self.product_lot.uom_id.id,
|
||||
"location_id": self.location.id,
|
||||
"quantity": 2.0,
|
||||
"lot_id": self.lot.id,
|
||||
},
|
||||
]
|
||||
)
|
||||
# Add user to lot tracking group
|
||||
self.env.user.groups_id = [(4, self.env.ref("stock.group_production_lot").id)]
|
||||
# And have some stock in a location
|
||||
self.location = self.env["stock.location"].create(
|
||||
{"name": "Inventory tests", "usage": "internal"}
|
||||
)
|
||||
self.test_products = (
|
||||
self.product1 + self.product2 + self.product3 + self.product_lot
|
||||
)
|
||||
|
||||
def test_inventory_filter(self):
|
||||
# Filter all products
|
||||
inventory = self.inventory_model.create(
|
||||
{"name": "Inventory test", "filter": "products"}
|
||||
)
|
||||
inventory.action_start()
|
||||
self.assertTrue(self.test_products <= inventory.line_ids.mapped("product_id"))
|
||||
# Filter by categories
|
||||
inventory.action_cancel_draft()
|
||||
inventory.update(
|
||||
{"filter": "categories", "categ_ids": [(6, 0, [self.category.id])]}
|
||||
)
|
||||
inventory.action_start()
|
||||
self.assertEqual(len(inventory.line_ids), 3)
|
||||
# Filter by lots
|
||||
inventory.action_cancel_draft()
|
||||
inventory.update({"filter": "lots", "lot_ids": [(6, 0, self.lot.ids)]})
|
||||
inventory.action_start()
|
||||
self.assertEqual(len(inventory.line_ids), 1)
|
||||
|
||||
def test_inventory_domain_filter(self):
|
||||
inventory = self.inventory_model.create(
|
||||
{
|
||||
"name": "Domain inventory",
|
||||
"filter": "domain",
|
||||
"product_domain": [("id", "=", self.product1.id)],
|
||||
}
|
||||
)
|
||||
inventory.action_start()
|
||||
self.assertEqual(len(inventory.line_ids), 1)
|
||||
line1 = inventory.line_ids[0]
|
||||
self.assertEqual(line1.product_id, self.product1)
|
||||
self.assertEqual(line1.theoretical_qty, 2.0)
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_inventory_form">
|
||||
<field name="model">stock.inventory</field>
|
||||
<field name="inherit_id" ref="stock.view_inventory_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_ids" position="attributes">
|
||||
<attribute
|
||||
name="attrs"
|
||||
>{'invisible': [('filter', '!=', 'products')]}</attribute>
|
||||
</field>
|
||||
<xpath expr="//field[@name='location_ids']/../.." position="before">
|
||||
<group name="preparation_filter">
|
||||
<group name="preparation_filter_left">
|
||||
<field
|
||||
name="filter"
|
||||
string="Inventory of"
|
||||
widget='radio'
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"
|
||||
/>
|
||||
</group>
|
||||
<group name="preparation_filter_right">
|
||||
<field
|
||||
name="product_domain"
|
||||
nolabel="1"
|
||||
widget="domain"
|
||||
attrs="{'invisible': [('filter', '!=', 'domain')]}"
|
||||
options="{'model': 'product.product'}"
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
</xpath>
|
||||
<field name="product_ids" position="after">
|
||||
<field
|
||||
name="categ_ids"
|
||||
widget="many2many_tags"
|
||||
attrs="{'invisible':[('filter','!=','categories')]}"
|
||||
/>
|
||||
<field
|
||||
name="lot_ids"
|
||||
widget="many2many_tags"
|
||||
attrs="{'invisible':[('filter','!=','lots')]}"
|
||||
/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user