diff --git a/pos_picking_delayed/__manifest__.py b/pos_picking_delayed/__manifest__.py index 472bd222..4c1596ff 100644 --- a/pos_picking_delayed/__manifest__.py +++ b/pos_picking_delayed/__manifest__.py @@ -18,6 +18,9 @@ 'views/view_pos_config.xml', 'views/view_pos_order.xml', ], + 'demo': [ + 'demo/pos_config.xml', + ], 'images': [ 'static/description/pos_order_tree.png', ], diff --git a/pos_picking_delayed/demo/pos_config.xml b/pos_picking_delayed/demo/pos_config.xml index 9b2658b0..b9a5c409 100644 --- a/pos_picking_delayed/demo/pos_config.xml +++ b/pos_picking_delayed/demo/pos_config.xml @@ -11,7 +11,7 @@ other module to fail during the test. --> - False + diff --git a/pos_picking_load/README.rst b/pos_picking_load/README.rst new file mode 100644 index 00000000..8661ae1d --- /dev/null +++ b/pos_picking_load/README.rst @@ -0,0 +1,214 @@ +============================ +Point Of Sale - Picking Load +============================ + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-legalsylvain%2Fpos-lightgray.png?logo=github + :target: https://github.com/legalsylvain/pos/tree/10.0-mig-pos_picking_load/pos_picking_load + :alt: legalsylvain/pos + +|badge1| |badge2| |badge3| + +This module extends the functionality of point of sale to allow you to +load your pickings in the Point of Sale, in order to add / remove products +and so create a PoS Order and mark it as paid. + +**Detailled Use Case** + +This module is usefull for the following use case + +* You have many Sale Orders that have generated pickings. Typically if you have + connected your Odoo instance to an online store like Shop Invader, + Prestashop, Magento, or if you use light Odoo shop (``website_sale`` + module). +* Once the order validated, you prepare your pickings +* The customer come in your shop to recover his order +* the customer add (or remove) some products +* the customer pay his order, based on the real delivered products list + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure this module, you need to: + +#. Go to Warehouse / Configuration / Types of Operation +#. Select the picking type(s) you want to see in the point of sale +#. Check the box 'Available in Point of Sale' + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/stock_picking_type_form.png + :width: 800 px + +Note: This box is NOT enabled by default except in demo data for the type +'Delivery Orders' of the demo company 'YourCompany'. + +#. Go to Point of Sale / Configuration / Point of Sales +#. Select the Point(s) of Sales witch those you want to enable the feature +#. Check the box 'Load Pickings' +#. Set the max quantity of pickings you want to load + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/pos_config_form.png + :width: 800 px + +Note: This box is enabled by default + +**Technical Notes** + +* By default, the Point of Sale will display only the pickings if the state is + in 'Waiting Availability', 'Partially Available' or 'Ready to Transfer'. + +You can change this filter by overloading the ``_prepare_filter_for_pos`` +function of the model ``stock.picking``. + +* By default, the search of pickings will be done on the fields ``name``, + ``origin`` and ``partner_id`` of the picking. + +You can change this feature by overloading the +``_prepare_filter_query_for_pos`` function of the model ``stock.picking``. + +* By default, when the PoS order is confirmed, the original picking is + cancelled and the sale order is set to the state 'Done'. + +You can change this behaviour by overloading +``_handle_orders_with_original_picking`` function of the model ``pos.order``. + +Usage +===== + +To use this module, you need to: + +* Launch the point of sale +* On a new order (without lines), click on the 'Load Picking' button. + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_01_load_button.png + :width: 800 px + +* Point of sale will load available pickings. (About displayed pickings, see + 'Technical Notes' section). + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_02_picking_list.png + :width: 800 px + +* Click on a picking will check if the picking is loadable and if yes, will + display a 'Select' button. (See 'Possible Warnings' Section) + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_03_confirm.png + :width: 800 px + +* Confirm the selection, by clicking on 'Select' button. It will display + the content of the moves (as PoS Order Lines) + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_04_pos_order.png + :width: 800 px + +The price and the discount will be the sale price and the discount set in +the according Sale Order Line, if it was found. Otherwise, discount will be +set to 0, and unit price will be the unit price of the product when it has been +loaded in the Point of Sale. + +**Related Sale Order:** + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_sale_order.png + :width: 800 px + +**Related Picking:** + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_stock_picking.png + :width: 800 px + + +* Finally, you can add / remove products or change quantity and collect the + payment. + +When, the order is marked as paid, the original picking will be cancelled, +because Point Of Sale generates a new picking related to the real delivered +products and the original Sale Order will pass to the state 'Done'. (Delivery +exception is ignored). +(See 'Technical Notes' section). + +**Possible Warnings** + +Some warning messages can appear: + +* if some products are not available in the Point of Sale + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_product.png + :width: 800 px + +* if the partner is not available in the Point of Sale + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_partner.png + :width: 800 px + +* if the picking has been still loaded in another PoS order + +.. figure:: https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_picking_still_loaded.png + :width: 800 px + +Known issues / Roadmap +====================== + +* This module will try to get original unit price from the sale order and not + use the Current unit price of the product. + (The price at which you pledged to sell the product). + Some VAT troubles will occure if a product is set with VAT marked as + 'VAT included' and if in the sale order line, there are some VAT marked as + 'VAT excluded' for exemple. + +**The VAT settings should be consistent.** + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* GRAP + +Contributors +~~~~~~~~~~~~ + +* Sylvain LE GAL (https://twitter.com/legalsylvain) +* Stefan Rijnhart + +Maintainers +~~~~~~~~~~~ + + + +.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px + :target: https://github.com/legalsylvain + :alt: legalsylvain + +Current `maintainer `__: + +|maintainer-legalsylvain| + +This module is part of the `legalsylvain/pos `_ project on GitHub. + + +You are welcome to contribute. diff --git a/pos_picking_load/__init__.py b/pos_picking_load/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/pos_picking_load/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/pos_picking_load/__manifest__.py b/pos_picking_load/__manifest__.py new file mode 100644 index 00000000..22dd40cf --- /dev/null +++ b/pos_picking_load/__manifest__.py @@ -0,0 +1,36 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + 'name': 'Point Of Sale - Picking Load', + 'summary': "Load and confirm stock pickings via Point Of Sale", + 'version': '12.0.1.0.0', + 'category': 'Point Of Sale', + 'author': 'GRAP,Odoo Community Association (OCA)', + 'website': 'https://www.github.com/OCA/pos', + 'license': 'AGPL-3', + 'maintainers': ['legalsylvain'], + 'development_status': 'Beta', + 'depends': [ + 'sale_stock', + 'point_of_sale', + ], + 'data': [ + 'views/view_pos_config.xml', + 'views/view_sale_order.xml', + 'views/view_stock_picking.xml', + 'views/view_stock_picking_type.xml', + 'views/pos_picking_load.xml', + ], + 'demo': [ + 'demo/res_groups.xml', + 'demo/res_partner.xml', + 'demo/product_template.xml', + 'demo/sale_order.xml', + 'demo/stock_picking_type.xml', + ], + 'qweb': [ + 'static/src/xml/pos_picking_load.xml', + ], + 'installable': True, +} diff --git a/pos_picking_load/demo/product_template.xml b/pos_picking_load/demo/product_template.xml new file mode 100644 index 00000000..e0ab1af6 --- /dev/null +++ b/pos_picking_load/demo/product_template.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pos_picking_load/demo/res_groups.xml b/pos_picking_load/demo/res_groups.xml new file mode 100644 index 00000000..536f8277 --- /dev/null +++ b/pos_picking_load/demo/res_groups.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/pos_picking_load/demo/res_partner.xml b/pos_picking_load/demo/res_partner.xml new file mode 100644 index 00000000..003186de --- /dev/null +++ b/pos_picking_load/demo/res_partner.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/pos_picking_load/demo/sale_order.xml b/pos_picking_load/demo/sale_order.xml new file mode 100644 index 00000000..b66fe72f --- /dev/null +++ b/pos_picking_load/demo/sale_order.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + 5 + 100 + 20 + + + + + + 3 + + + + + + + + + + + + + + 15 + 10 + + + + + + 1 + + + + + + 3 + 555 + + + + + diff --git a/pos_picking_load/demo/stock_picking_type.xml b/pos_picking_load/demo/stock_picking_type.xml new file mode 100644 index 00000000..b4db6e5b --- /dev/null +++ b/pos_picking_load/demo/stock_picking_type.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/pos_picking_load/i18n/am.po b/pos_picking_load/i18n/am.po new file mode 100644 index 00000000..9fd04fef --- /dev/null +++ b/pos_picking_load/i18n/am.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ar.po b/pos_picking_load/i18n/ar.po new file mode 100644 index 00000000..dbb484a4 --- /dev/null +++ b/pos_picking_load/i18n/ar.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "إلغاء" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "الاسم" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/bg.po b/pos_picking_load/i18n/bg.po new file mode 100644 index 00000000..a1017a9b --- /dev/null +++ b/pos_picking_load/i18n/bg.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Клиент" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Име" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/bs.po b/pos_picking_load/i18n/bs.po new file mode 100644 index 00000000..d63c7ecf --- /dev/null +++ b/pos_picking_load/i18n/bs.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ca.po b/pos_picking_load/i18n/ca.po new file mode 100644 index 00000000..d9d7ddc7 --- /dev/null +++ b/pos_picking_load/i18n/ca.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Eric Antones , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Eric Antones , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Client " + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Punt de Venda" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Comandes de venda" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ca_ES.po b/pos_picking_load/i18n/ca_ES.po new file mode 100644 index 00000000..2ccd491a --- /dev/null +++ b/pos_picking_load/i18n/ca_ES.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Carlos Hormigo, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-28 18:31+0000\n" +"PO-Revision-Date: 2018-02-28 18:31+0000\n" +"Last-Translator: Carlos Hormigo, 2018\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/cs.po b/pos_picking_load/i18n/cs.po new file mode 100644 index 00000000..7cbec522 --- /dev/null +++ b/pos_picking_load/i18n/cs.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Název" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/da.po b/pos_picking_load/i18n/da.po new file mode 100644 index 00000000..fc575f9d --- /dev/null +++ b/pos_picking_load/i18n/da.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuller" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/de.po b/pos_picking_load/i18n/de.po new file mode 100644 index 00000000..bd5c2543 --- /dev/null +++ b/pos_picking_load/i18n/de.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# Rudolf Schnapka , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Löschen" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Kunde" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Bezeichnung" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Pickliste" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Verkaufsstelle" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Verkaufsauftrag" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Geplantes Datum" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Auswahl" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "Die Art der Kommissionierung bestimmt die Sicht" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/el_GR.po b/pos_picking_load/i18n/el_GR.po new file mode 100644 index 00000000..58e24080 --- /dev/null +++ b/pos_picking_load/i18n/el_GR.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Kostas Goutoudis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Kostas Goutoudis , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Άκυρο" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Πελάτης" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Ονομασία" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Εντολή Πώλησης" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/en_AU.po b/pos_picking_load/i18n/en_AU.po new file mode 100644 index 00000000..229a748a --- /dev/null +++ b/pos_picking_load/i18n/en_AU.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/en_GB.po b/pos_picking_load/i18n/en_GB.po new file mode 100644 index 00000000..fedf5d0e --- /dev/null +++ b/pos_picking_load/i18n/en_GB.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Name" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es.po b/pos_picking_load/i18n/es.po new file mode 100644 index 00000000..7f0cec20 --- /dev/null +++ b/pos_picking_load/i18n/es.po @@ -0,0 +1,206 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# Janire Olagibel , 2017 +# oihane , 2017 +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Pedro M. Baeza , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" +"No se puede ejecutar esta acción porque el TPV está actualmente sin conexión" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "Error de conexión" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Albarán" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Terminal Punto de Venta" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Pedidos de venta" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Fecha programada" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Seleccionar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "Documento origen" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "El tipo de albarán determina la vista" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "Productos Desconocidos" diff --git a/pos_picking_load/i18n/es_AR.po b/pos_picking_load/i18n/es_AR.po new file mode 100644 index 00000000..339103c2 --- /dev/null +++ b/pos_picking_load/i18n/es_AR.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Remitos" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_CL.po b/pos_picking_load/i18n/es_CL.po new file mode 100644 index 00000000..5e726567 --- /dev/null +++ b/pos_picking_load/i18n/es_CL.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_CO.po b/pos_picking_load/i18n/es_CO.po new file mode 100644 index 00000000..6e24cf06 --- /dev/null +++ b/pos_picking_load/i18n/es_CO.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_CR.po b/pos_picking_load/i18n/es_CR.po new file mode 100644 index 00000000..de1e5c13 --- /dev/null +++ b/pos_picking_load/i18n/es_CR.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_DO.po b/pos_picking_load/i18n/es_DO.po new file mode 100644 index 00000000..525a7e67 --- /dev/null +++ b/pos_picking_load/i18n/es_DO.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_EC.po b/pos_picking_load/i18n/es_EC.po new file mode 100644 index 00000000..016f4e7f --- /dev/null +++ b/pos_picking_load/i18n/es_EC.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_ES.po b/pos_picking_load/i18n/es_ES.po new file mode 100644 index 00000000..0686ae59 --- /dev/null +++ b/pos_picking_load/i18n/es_ES.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Pedido de venta" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_MX.po b/pos_picking_load/i18n/es_MX.po new file mode 100644 index 00000000..3774eb27 --- /dev/null +++ b/pos_picking_load/i18n/es_MX.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_PE.po b/pos_picking_load/i18n/es_PE.po new file mode 100644 index 00000000..7e0b5258 --- /dev/null +++ b/pos_picking_load/i18n/es_PE.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_PY.po b/pos_picking_load/i18n/es_PY.po new file mode 100644 index 00000000..f5c4b13e --- /dev/null +++ b/pos_picking_load/i18n/es_PY.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/es_VE.po b/pos_picking_load/i18n/es_VE.po new file mode 100644 index 00000000..df12cc80 --- /dev/null +++ b/pos_picking_load/i18n/es_VE.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Pedidos de venta" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/et.po b/pos_picking_load/i18n/et.po new file mode 100644 index 00000000..0c27eceb --- /dev/null +++ b/pos_picking_load/i18n/et.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Loobu" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/eu.po b/pos_picking_load/i18n/eu.po new file mode 100644 index 00000000..a7f546fa --- /dev/null +++ b/pos_picking_load/i18n/eu.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# Esther Martín Menéndez , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Izena" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/eu_ES.po b/pos_picking_load/i18n/eu_ES.po new file mode 100644 index 00000000..8a2ebedb --- /dev/null +++ b/pos_picking_load/i18n/eu_ES.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (Spain) (https://www.transifex.com/oca/teams/23907/" +"eu_ES/)\n" +"Language: eu_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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Bezeroa" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/fa.po b/pos_picking_load/i18n/fa.po new file mode 100644 index 00000000..6acdcfb4 --- /dev/null +++ b/pos_picking_load/i18n/fa.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "لغو" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "نام" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/fi.po b/pos_picking_load/i18n/fi.po new file mode 100644 index 00000000..8aca9ac2 --- /dev/null +++ b/pos_picking_load/i18n/fi.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Timo Talvitie , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Timo Talvitie , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Peruuta" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Asiakas" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Keräilylista" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Myyntitilaus" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Valitse" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/fr.po b/pos_picking_load/i18n/fr.po new file mode 100644 index 00000000..3809398d --- /dev/null +++ b/pos_picking_load/i18n/fr.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-07-11 09:49+0000\n" +"PO-Revision-Date: 2019-07-11 09:49+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:274 +#, python-format +msgid "A picking is still loaded. You can not load another picking. Please create a new order." +msgstr "Un BL est déjà chargé. Vous ne pouvez pas en charger un autre. Veuillez créer une nouvelle commande." + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_stock_picking_type__available_in_pos +msgid "Available in Point Of Sale" +msgstr "Disponible dans le point de vente" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:243 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "Impossible de réaliser cette action car le point de vente est actuellement hors ligne" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:25 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:242 +#, python-format +msgid "Connection error" +msgstr "Erreur de connexion" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Customer" +msgstr "Client" + +#. module: pos_picking_load +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Enable the possibility to load pickings in the Point of Sale" +msgstr "Activer la possibilité de charger des bons de livraison dans le point de vente" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_sale_order__final_pos_order_id +#: model:ir.model.fields,field_description:pos_picking_load.field_stock_picking__final_pos_order_id +msgid "Final PoS Order" +msgstr "Commande Finale" + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_stock_picking_type__available_in_pos +msgid "If checked, associated pickings will be available in the point of sale, to be changed and paid in it" +msgstr "Si la case est cochée, toutes les bons de livraisons associés seront disponible dans le point de vente, pour ere changé et payé au sein de celui-ci" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:285 +#, python-format +msgid "Load Picking" +msgstr "Charger un bon de livraison" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_config__iface_load_picking +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Load Pickings" +msgstr "Charger des bons de livraison" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_config__iface_load_picking_max_qty +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Max Picking Quantity To Load" +msgstr "Quantité maximum de BL à charger" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_order__origin_picking_id +msgid "Origin Picking" +msgstr "Livraison d'origine" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:72 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:80 +#, python-format +msgid "Origin Picking:" +msgstr "BL d'origine:" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:273 +#, python-format +msgid "Pending Picking" +msgstr "BL en cours" + +#. module: pos_picking_load +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Picking Load" +msgstr "Chargement de bon de livraison" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:150 +#: code:addons/pos_picking_load/static/src/js/widget.js:166 +#, python-format +msgid "Picking Still Loaded" +msgstr "Bon de livraison déjà chargé" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "Picking Type" +msgstr "Type de préparation" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_config +msgid "Point of Sale Configuration" +msgstr "Paramétrage du point de vente" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale Orders" +msgstr "Commandes du point de vente" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sale Order" +msgstr "Bon de commande" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Scheduled Date" +msgstr "Date prévue" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:33 +#, python-format +msgid "Search Picking" +msgstr "Chercher un bon de livraison" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:29 +#, python-format +msgid "Select" +msgstr "Sélectionner" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:235 +#, python-format +msgid "Server Error" +msgstr "Erreur serveur" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:53 +#, python-format +msgid "Source Document" +msgstr "Document d'origine" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:236 +#, python-format +msgid "The server encountered an error while receiving your order." +msgstr "Le serveur a rencontré une erreur lors de la réception de votre commande." + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_sale_order__final_pos_order_id +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "Ce bon de commande a été remplacé par cette commande via le point de vente" + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_stock_picking__final_pos_order_id +msgid "This picking has been canceled, because it has been replaced by this PoS Order" +msgstr "Ce bon de livraison a été annulé, car il a été remplacé par cette commande via le point de vente" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Transfer" +msgstr "Transfert" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:119 +#, python-format +msgid "Unable to load some picking lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "Impossible de charger certaines lignes du bon de livraison car certains produits ne sont pas disponibles dans le point de vente.\n" +"\n" +"Merci de vérifier les lignes suivantes :\n" +"\n" +" * " + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:167 +#, python-format +msgid "Unable to load this picking because it has been loaded in another confirmed PoS Order :\n" +"\n" +"" +msgstr "Impossible de charger ce bon de livraison car il a déjà été chargé dans une autre commande confirmée :\n" +"\n" +"" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:151 +#, python-format +msgid "Unable to load this picking because it has been loaded in another draft PoS Order :\n" +"\n" +"" +msgstr "Impossible de charger ce bon de livraison car il a déjà été chargé dans une autre commande en cours :\n" +"\n" +"" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:137 +#, python-format +msgid "Unable to load this picking because the partner is not known in the Point Of Sale as a customer" +msgstr "Impossible de charger ce bon de livraison car ce partenaire n'est pas reconnu dans le point de vente comme un client" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:136 +#, python-format +msgid "Unknown Partner" +msgstr "Partenaire inconnu" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:118 +#, python-format +msgid "Unknown Products" +msgstr "Produits inconnus" + diff --git a/pos_picking_load/i18n/fr_CA.po b/pos_picking_load/i18n/fr_CA.po new file mode 100644 index 00000000..8018c6dd --- /dev/null +++ b/pos_picking_load/i18n/fr_CA.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/fr_CH.po b/pos_picking_load/i18n/fr_CH.po new file mode 100644 index 00000000..1d0d332a --- /dev/null +++ b/pos_picking_load/i18n/fr_CH.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/fr_FR.po b/pos_picking_load/i18n/fr_FR.po new file mode 100644 index 00000000..9ddcefe5 --- /dev/null +++ b/pos_picking_load/i18n/fr_FR.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/gl.po b/pos_picking_load/i18n/gl.po new file mode 100644 index 00000000..8976bc1b --- /dev/null +++ b/pos_picking_load/i18n/gl.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# César Castro Cruz , 2017 +# Alejandro Santana , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Alejandro Santana , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Punto de venda" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/he.po b/pos_picking_load/i18n/he.po new file mode 100644 index 00000000..d94b29c3 --- /dev/null +++ b/pos_picking_load/i18n/he.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "בטל" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "שם" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/hi.po b/pos_picking_load/i18n/hi.po new file mode 100644 index 00000000..3299856b --- /dev/null +++ b/pos_picking_load/i18n/hi.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "रद्द" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/hr.po b/pos_picking_load/i18n/hr.po new file mode 100644 index 00000000..e6603d6d --- /dev/null +++ b/pos_picking_load/i18n/hr.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Odustani" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Kupac" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Prodajni nalog" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/hr_HR.po b/pos_picking_load/i18n/hr_HR.po new file mode 100644 index 00000000..94efc3fa --- /dev/null +++ b/pos_picking_load/i18n/hr_HR.po @@ -0,0 +1,205 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Bole , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Prodjani nalog" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/hu.po b/pos_picking_load/i18n/hu.po new file mode 100644 index 00000000..f4d8d53c --- /dev/null +++ b/pos_picking_load/i18n/hu.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Mégsem" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Név" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Vevői megrendelés" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Kiválasztás" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/id.po b/pos_picking_load/i18n/id.po new file mode 100644 index 00000000..b566c4ff --- /dev/null +++ b/pos_picking_load/i18n/id.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Batalkan" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nama" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/it.po b/pos_picking_load/i18n/it.po new file mode 100644 index 00000000..46a73a00 --- /dev/null +++ b/pos_picking_load/i18n/it.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Lista Picking" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Punto Vendita" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Ordini vendita" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Data programmata" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Seleziona" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ja.po b/pos_picking_load/i18n/ja.po new file mode 100644 index 00000000..33b4c3f9 --- /dev/null +++ b/pos_picking_load/i18n/ja.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "名称" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ko.po b/pos_picking_load/i18n/ko.po new file mode 100644 index 00000000..bc2eca81 --- /dev/null +++ b/pos_picking_load/i18n/ko.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "취소" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "이름" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/lo.po b/pos_picking_load/i18n/lo.po new file mode 100644 index 00000000..e391458d --- /dev/null +++ b/pos_picking_load/i18n/lo.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/lt.po b/pos_picking_load/i18n/lt.po new file mode 100644 index 00000000..e97225c6 --- /dev/null +++ b/pos_picking_load/i18n/lt.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Pavadinimas" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/lt_LT.po b/pos_picking_load/i18n/lt_LT.po new file mode 100644 index 00000000..e784b842 --- /dev/null +++ b/pos_picking_load/i18n/lt_LT.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/lv.po b/pos_picking_load/i18n/lv.po new file mode 100644 index 00000000..afc535e6 --- /dev/null +++ b/pos_picking_load/i18n/lv.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Atcelt" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nosaukums" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/mk.po b/pos_picking_load/i18n/mk.po new file mode 100644 index 00000000..937baae4 --- /dev/null +++ b/pos_picking_load/i18n/mk.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Име" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/mn.po b/pos_picking_load/i18n/mn.po new file mode 100644 index 00000000..a2fd2fc4 --- /dev/null +++ b/pos_picking_load/i18n/mn.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Нэр" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/nb.po b/pos_picking_load/i18n/nb.po new file mode 100644 index 00000000..68121fe1 --- /dev/null +++ b/pos_picking_load/i18n/nb.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/nb_NO.po b/pos_picking_load/i18n/nb_NO.po new file mode 100644 index 00000000..a4dd4c76 --- /dev/null +++ b/pos_picking_load/i18n/nb_NO.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Lukk" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/nl.po b/pos_picking_load/i18n/nl.po new file mode 100644 index 00000000..86962719 --- /dev/null +++ b/pos_picking_load/i18n/nl.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuleer" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Klant" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naam" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Verzamellijst" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Verkooporder" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Selecteer" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/nl_BE.po b/pos_picking_load/i18n/nl_BE.po new file mode 100644 index 00000000..f38ead40 --- /dev/null +++ b/pos_picking_load/i18n/nl_BE.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naam:" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/nl_NL.po b/pos_picking_load/i18n/nl_NL.po new file mode 100644 index 00000000..5965e4f6 --- /dev/null +++ b/pos_picking_load/i18n/nl_NL.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-24 11:35+0000\n" +"PO-Revision-Date: 2017-10-24 11:35+0000\n" +"Last-Translator: Peter Hageman , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Verwijderen" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Klant" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naam" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "Kassa" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Verkooporder" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/pl.po b/pos_picking_load/i18n/pl.po new file mode 100644 index 00000000..6522f62a --- /dev/null +++ b/pos_picking_load/i18n/pl.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nazwa" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/pos_picking_load.pot b/pos_picking_load/i18n/pos_picking_load.pot new file mode 100644 index 00000000..57d7f20b --- /dev/null +++ b/pos_picking_load/i18n/pos_picking_load.pot @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-07-11 09:48+0000\n" +"PO-Revision-Date: 2019-07-11 09:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:274 +#, python-format +msgid "A picking is still loaded. You can not load another picking. Please create a new order." +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_stock_picking_type__available_in_pos +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:243 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:25 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:242 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Enable the possibility to load pickings in the Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_sale_order__final_pos_order_id +#: model:ir.model.fields,field_description:pos_picking_load.field_stock_picking__final_pos_order_id +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_stock_picking_type__available_in_pos +msgid "If checked, associated pickings will be available in the point of sale, to be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:285 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_config__iface_load_picking +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_config__iface_load_picking_max_qty +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Max Picking Quantity To Load" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Name" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,field_description:pos_picking_load.field_pos_order__origin_picking_id +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:72 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:80 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:273 +#, python-format +msgid "Pending Picking" +msgstr "" + +#. module: pos_picking_load +#: model_terms:ir.ui.view,arch_db:pos_picking_load.view_pos_config_form +msgid "Picking Load" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:150 +#: code:addons/pos_picking_load/static/src/js/widget.js:166 +#, python-format +msgid "Picking Still Loaded" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "Picking Type" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_config +msgid "Point of Sale Configuration" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale Orders" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sale Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:33 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:29 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:235 +#, python-format +msgid "Server Error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:53 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:236 +#, python-format +msgid "The server encountered an error while receiving your order." +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_sale_order__final_pos_order_id +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model.fields,help:pos_picking_load.field_stock_picking__final_pos_order_id +msgid "This picking has been canceled, because it has been replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:119 +#, python-format +msgid "Unable to load some picking lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:167 +#, python-format +msgid "Unable to load this picking because it has been loaded in another confirmed PoS Order :\n" +"\n" +"" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:151 +#, python-format +msgid "Unable to load this picking because it has been loaded in another draft PoS Order :\n" +"\n" +"" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:137 +#, python-format +msgid "Unable to load this picking because the partner is not known in the Point Of Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:136 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/widget.js:118 +#, python-format +msgid "Unknown Products" +msgstr "" + diff --git a/pos_picking_load/i18n/pt.po b/pos_picking_load/i18n/pt.po new file mode 100644 index 00000000..0dcc7941 --- /dev/null +++ b/pos_picking_load/i18n/pt.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Daniel Reis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Daniel Reis , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Ordem de Venda" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/pt_BR.po b/pos_picking_load/i18n/pt_BR.po new file mode 100644 index 00000000..95220144 --- /dev/null +++ b/pos_picking_load/i18n/pt_BR.po @@ -0,0 +1,206 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Felipe Lopes , 2017 +# Paulo Ricardo , 2017 +# danimaribeiro , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: danimaribeiro , 2017\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" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Lista de separação" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Pedido de venda" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Data Marcada" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Selecione" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "Documento de origem" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/pt_PT.po b/pos_picking_load/i18n/pt_PT.po new file mode 100644 index 00000000..9923857a --- /dev/null +++ b/pos_picking_load/i18n/pt_PT.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ro.po b/pos_picking_load/i18n/ro.po new file mode 100644 index 00000000..7e3424b9 --- /dev/null +++ b/pos_picking_load/i18n/ro.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Anuleaza" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Nume" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Listă de ridicare" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Comandă vânzare" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/ru.po b/pos_picking_load/i18n/ru.po new file mode 100644 index 00000000..ea95a885 --- /dev/null +++ b/pos_picking_load/i18n/ru.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Отменена" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Название" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/sk.po b/pos_picking_load/i18n/sk.po new file mode 100644 index 00000000..51b2943b --- /dev/null +++ b/pos_picking_load/i18n/sk.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Jan Prokop , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-24 11:35+0000\n" +"PO-Revision-Date: 2017-10-24 11:35+0000\n" +"Last-Translator: Jan Prokop , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Zrušiť" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Zákazník" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Meno" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Objednávka predaja" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/sl.po b/pos_picking_load/i18n/sl.po new file mode 100644 index 00000000..46a93517 --- /dev/null +++ b/pos_picking_load/i18n/sl.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-22 00:52+0000\n" +"PO-Revision-Date: 2017-07-22 00:52+0000\n" +"Last-Translator: Matjaž Mozetič , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "--------------------------------" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "Razpoložljivo v prodajni točki" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "Dejanja ni mogoče izvesti, ker je POS trenutno nedosegljiv." + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Preklic" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "Napaka pri povezavi" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Kupec" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "Končni POS nalog" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" +"Če označeno, bodo povezani zbirniki na voljo v prodajni točki za " +"spreminjanje in plačevanje." + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "Naloži zbirnik" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "Naloži zbirnike" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "Izvorni zbirnik" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "Izvorni zbirnik:" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Zbirnik" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "POS Prodajna točka" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Prodajni nalog" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Načrtovani datum" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "Iskanje zbirnika" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "Izbira" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "Izvorni dokument" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "Tip zbirnika določi prikaz zbirnika" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "Ta prodajni nalog je bil zamenjan s tem POS nalogom." + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "Ta zbirnik je bil preklican, ker je bil zamenjan s tem POS nalogom." + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" +"Nekaterih postavk naloga ni bilo mogoče naložiti, ker proizvodi niso na " +"voljo v POS predpomnilniku.\n" +"\n" +"Preverite te postavke :\n" +"\n" +" * " + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "Tega zbirnika ni mogoče uvoziti, ker partner v POS ni znan kot kupec." + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "Neznan partner" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "Neznani proizvodi" diff --git a/pos_picking_load/i18n/sr.po b/pos_picking_load/i18n/sr.po new file mode 100644 index 00000000..5a620af8 --- /dev/null +++ b/pos_picking_load/i18n/sr.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/sr@latin.po b/pos_picking_load/i18n/sr@latin.po new file mode 100644 index 00000000..b2f5edd0 --- /dev/null +++ b/pos_picking_load/i18n/sr@latin.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Ime:" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/sv.po b/pos_picking_load/i18n/sv.po new file mode 100644 index 00000000..28175b34 --- /dev/null +++ b/pos_picking_load/i18n/sv.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Namn" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/th.po b/pos_picking_load/i18n/th.po new file mode 100644 index 00000000..4d181bf8 --- /dev/null +++ b/pos_picking_load/i18n/th.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "ชื่อ" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/tr.po b/pos_picking_load/i18n/tr.po new file mode 100644 index 00000000..072f58b3 --- /dev/null +++ b/pos_picking_load/i18n/tr.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Ivan BARAYEV , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Ivan BARAYEV , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Vazgeç" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "Müşteri" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Adı" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Toplama Listesi" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Sipariş Emri" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/tr_TR.po b/pos_picking_load/i18n/tr_TR.po new file mode 100644 index 00000000..6c13bd98 --- /dev/null +++ b/pos_picking_load/i18n/tr_TR.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: Ozge Altinisik , 2017\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=1; plural=0;\n" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "İptal et" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Ad" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "Seçim listesi" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Satış emri" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/uk.po b/pos_picking_load/i18n/uk.po new file mode 100644 index 00000000..46108c9e --- /dev/null +++ b/pos_picking_load/i18n/uk.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Скасувати" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Name" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/vi.po b/pos_picking_load/i18n/vi.po new file mode 100644 index 00000000..470854e5 --- /dev/null +++ b/pos_picking_load/i18n/vi.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Tên" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/vi_VN.po b/pos_picking_load/i18n/vi_VN.po new file mode 100644 index 00000000..84bf057d --- /dev/null +++ b/pos_picking_load/i18n/vi_VN.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "Hủy" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "Tên" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "Đơn hàng Bán" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "Ngày theo kế hoạch" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/zh_CN.po b/pos_picking_load/i18n/zh_CN.po new file mode 100644 index 00000000..5c13cbfd --- /dev/null +++ b/pos_picking_load/i18n/zh_CN.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +# liAnGjiA , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: liAnGjiA , 2017\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" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "客户" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "名称" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "POS" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "销售订单" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/i18n/zh_TW.po b/pos_picking_load/i18n/zh_TW.po new file mode 100644 index 00000000..0a10b8ee --- /dev/null +++ b/pos_picking_load/i18n/zh_TW.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 03:00+0000\n" +"PO-Revision-Date: 2017-07-13 03:00+0000\n" +"Last-Translator: OCA Transbot , 2017\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: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:70 +#, python-format +msgid "--------------------------------" +msgstr "" + +#. module: pos_picking_load +#: field:stock.picking.type,available_in_pos:0 +msgid "Available in Point Of Sale" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:264 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:290 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:22 +#, python-format +msgid "Cancel" +msgstr "刪除" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:263 +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:289 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:50 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_picking_load +#: field:sale.order,final_pos_order_id:0 +#: field:stock.picking,final_pos_order_id:0 +msgid "Final PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking.type,available_in_pos:0 +msgid "" +"If checked, associated pickings will be available in the point of sale, to " +"be changed and paid in it" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:5 +#, python-format +msgid "Load Picking" +msgstr "" + +#. module: pos_picking_load +#: field:pos.config,iface_load_picking:0 +msgid "Load Pickings" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:49 +#, python-format +msgid "Name" +msgstr "名稱" + +#. module: pos_picking_load +#: field:pos.order,origin_picking_id:0 +msgid "Origin Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:71 +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:79 +#, python-format +msgid "Origin Picking:" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:51 +#, python-format +msgid "Scheduled Date" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:30 +#, python-format +msgid "Search Picking" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:26 +#, python-format +msgid "Select" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/xml/pos_picking_load.xml:52 +#, python-format +msgid "Source Document" +msgstr "" + +#. module: pos_picking_load +#: model:ir.model,name:pos_picking_load.model_stock_picking_type +msgid "The picking type determines the picking view" +msgstr "" + +#. module: pos_picking_load +#: help:sale.order,final_pos_order_id:0 +msgid "This Sale Order has beend replaced by this PoS Order" +msgstr "" + +#. module: pos_picking_load +#: help:stock.picking,final_pos_order_id:0 +msgid "" +"This picking has been canceled, because it has been replaced by this PoS " +"Order" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:228 +#, python-format +msgid "" +"Unable to load some picking lines because the products are not available in " +"the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:239 +#, python-format +msgid "" +"Unable to load this picking because the partner is not known in the Point Of " +"Sale as a customer" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:238 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: pos_picking_load +#. openerp-web +#: code:addons/pos_picking_load/static/src/js/pos_picking_load.js:227 +#, python-format +msgid "Unknown Products" +msgstr "" diff --git a/pos_picking_load/models/__init__.py b/pos_picking_load/models/__init__.py new file mode 100644 index 00000000..d4ab9e61 --- /dev/null +++ b/pos_picking_load/models/__init__.py @@ -0,0 +1,5 @@ +from . import sale_order +from . import stock_picking +from . import stock_picking_type +from . import pos_config +from . import pos_order diff --git a/pos_picking_load/models/pos_config.py b/pos_picking_load/models/pos_config.py new file mode 100644 index 00000000..77e05857 --- /dev/null +++ b/pos_picking_load/models/pos_config.py @@ -0,0 +1,14 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class PosConfig(models.Model): + _inherit = 'pos.config' + + iface_load_picking = fields.Boolean(string='Load Pickings', default=True) + + iface_load_picking_max_qty = fields.Integer( + string='Max Picking Quantity To Load', default=10, required=True) diff --git a/pos_picking_load/models/pos_order.py b/pos_picking_load/models/pos_order.py new file mode 100644 index 00000000..6cefc915 --- /dev/null +++ b/pos_picking_load/models/pos_order.py @@ -0,0 +1,65 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, api, fields + + +class PosOrder(models.Model): + _inherit = 'pos.order' + + # Field Section + origin_picking_id = fields.Many2one( + string='Origin Picking', comodel_name='stock.picking', + readonly=True) + + # Overloadable Section + @api.multi + def _handle_orders_with_original_picking(self): + """By default, the module cancel the original stock picking and + set the original sale order as invoiced. + Overload / Overwrite this function if you want another + behaviour""" + for order in self: + # Cancel Picking + order.origin_picking_id.action_cancel() + order.origin_picking_id.write({'final_pos_order_id': order.id}) + + # Set Sale Order as fully invoiced + order.origin_picking_id.mapped('group_id.sale_id').write({ + 'invoice_status': 'invoiced', + }) + + # Overload Section + @api.model + def create_from_ui(self, orders): + """Cancel the original picking, when the pos order is done""" + res = super().create_from_ui(orders) + orders_with_original_picking = self.search([ + ('id', 'in', res), ('origin_picking_id', '!=', False), + ('state', '!=', 'draft')]) + + orders_with_original_picking._handle_orders_with_original_picking() + + return res + + @api.model + def _order_fields(self, ui_order): + res = super()._order_fields(ui_order) + if 'origin_picking_id' in ui_order: + res['origin_picking_id'] = ui_order['origin_picking_id'] + return res + + @api.multi + def create_picking(self): + """ Call super() for each order separately with the origin picking id + in the context. The new picking will be updated accordingly in the + picking's action_confirm() """ + for order in self: + if order.picking_id: + continue + if order.origin_picking_id: + order = order.with_context( + origin_picking_id=order.origin_picking_id.id) + super(PosOrder, order).create_picking() + return True diff --git a/pos_picking_load/models/sale_order.py b/pos_picking_load/models/sale_order.py new file mode 100644 index 00000000..be8134df --- /dev/null +++ b/pos_picking_load/models/sale_order.py @@ -0,0 +1,13 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class SaleOrder(models.Model): + _inherit = 'sale.order' + + final_pos_order_id = fields.Many2one( + string='Final PoS Order', comodel_name='pos.order', readonly=True, + help="This Sale Order has beend replaced by this PoS Order") diff --git a/pos_picking_load/models/stock_picking.py b/pos_picking_load/models/stock_picking.py new file mode 100644 index 00000000..9f00dde3 --- /dev/null +++ b/pos_picking_load/models/stock_picking.py @@ -0,0 +1,91 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, api, fields + + +class StockPicking(models.Model): + _inherit = 'stock.picking' + + # Field Section + final_pos_order_id = fields.Many2one( + string='Final PoS Order', comodel_name='pos.order', readonly=True, + help="This picking has been canceled, because it has been replaced by" + " this PoS Order") + + # Custom Section - Picking List Part + @api.model + def _prepare_filter_for_pos(self, pos_session_id): + picking_type_obj = self.env['stock.picking.type'] + picking_types = picking_type_obj.search( + [('available_in_pos', '=', True)]) + return [ + ('picking_type_id', 'in', picking_types.ids), + ('state', 'in', ['confirmed', 'partially_available', 'assigned']), + ] + + @api.model + def _prepare_filter_query_for_pos(self, pos_session_id, query): + return [ + '|', '|', + ('name', 'ilike', query), + ('origin', 'ilike', query), + ('partner_id', 'ilike', query), + ] + + @api.model + def _prepare_fields_for_pos_list(self): + return ['name', 'partner_id', 'scheduled_date', 'origin'] + + @api.model + def search_pickings_for_pos(self, query, pos_session_id): + session_obj = self.env['pos.session'] + config = session_obj.browse(pos_session_id).config_id + condition = self._prepare_filter_for_pos(pos_session_id) +\ + self._prepare_filter_query_for_pos(pos_session_id, query) + fields = self._prepare_fields_for_pos_list() + return self.search_read( + condition, fields, limit=config.iface_load_picking_max_qty) + + # Custom Section - Load Picking Part + @api.model + def _prepare_line_data_from_stock_move(self, move): + picking_line_data = { + 'name': move.name, + 'product_id': move.product_id.id, + 'quantity': move.product_uom_qty, + } + sale_order_line = move.sale_line_id + if sale_order_line: + # Get price and discount of the order if available + picking_line_data['price_unit'] = sale_order_line.price_unit + picking_line_data['discount'] = sale_order_line.discount + return picking_line_data + + @api.model + def load_picking_for_pos(self, picking_id): + picking = self.browse(picking_id) + picking_lines = [] + for move in picking.move_lines.filtered(lambda x: x.state != 'cancel'): + picking_lines.append(self._prepare_line_data_from_stock_move(move)) + return { + 'id': picking.id, + 'name': picking.name, + 'partner_id': picking.partner_id.id, + 'line_ids': picking_lines, + } + + @api.multi + def update_from_origin_picking(self, origin_picking): + if origin_picking.group_id: + self.filtered(lambda p: not p.group_id).write({ + 'group_id': origin_picking.group_id.id}) + + @api.multi + def action_confirm(self): + """ Assign to same procurement group as the origin picking """ + if self.env.context.get('origin_picking_id'): + self.update_from_origin_picking( + self.browse(self.env.context['origin_picking_id'])) + return super().action_confirm() diff --git a/pos_picking_load/models/stock_picking_type.py b/pos_picking_load/models/stock_picking_type.py new file mode 100644 index 00000000..8e299366 --- /dev/null +++ b/pos_picking_load/models/stock_picking_type.py @@ -0,0 +1,14 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class StockPickingType(models.Model): + _inherit = 'stock.picking.type' + + available_in_pos = fields.Boolean( + string='Available in Point Of Sale', help="If checked, associated" + " pickings will be available in the point of sale, to be changed and" + " paid in it") diff --git a/pos_picking_load/readme/CONFIGURE.rst b/pos_picking_load/readme/CONFIGURE.rst new file mode 100644 index 00000000..cc7213d7 --- /dev/null +++ b/pos_picking_load/readme/CONFIGURE.rst @@ -0,0 +1,41 @@ +To configure this module, you need to: + +#. Go to Warehouse / Configuration / Types of Operation +#. Select the picking type(s) you want to see in the point of sale +#. Check the box 'Available in Point of Sale' + +.. figure:: ../static/description/stock_picking_type_form.png + :width: 800 px + +Note: This box is NOT enabled by default except in demo data for the type +'Delivery Orders' of the demo company 'YourCompany'. + +#. Go to Point of Sale / Configuration / Point of Sales +#. Select the Point(s) of Sales witch those you want to enable the feature +#. Check the box 'Load Pickings' +#. Set the max quantity of pickings you want to load + +.. figure:: ../static/description/pos_config_form.png + :width: 800 px + +Note: This box is enabled by default + +**Technical Notes** + +* By default, the Point of Sale will display only the pickings if the state is + in 'Waiting Availability', 'Partially Available' or 'Ready to Transfer'. + +You can change this filter by overloading the ``_prepare_filter_for_pos`` +function of the model ``stock.picking``. + +* By default, the search of pickings will be done on the fields ``name``, + ``origin`` and ``partner_id`` of the picking. + +You can change this feature by overloading the +``_prepare_filter_query_for_pos`` function of the model ``stock.picking``. + +* By default, when the PoS order is confirmed, the original picking is + cancelled and the sale order is set to the state 'Done'. + +You can change this behaviour by overloading +``_handle_orders_with_original_picking`` function of the model ``pos.order``. diff --git a/pos_picking_load/readme/CONTRIBUTORS.rst b/pos_picking_load/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..9e9913a0 --- /dev/null +++ b/pos_picking_load/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Sylvain LE GAL (https://twitter.com/legalsylvain) +* Stefan Rijnhart diff --git a/pos_picking_load/readme/DESCRIPTION.rst b/pos_picking_load/readme/DESCRIPTION.rst new file mode 100644 index 00000000..c0f9a60a --- /dev/null +++ b/pos_picking_load/readme/DESCRIPTION.rst @@ -0,0 +1,16 @@ +This module extends the functionality of point of sale to allow you to +load your pickings in the Point of Sale, in order to add / remove products +and so create a PoS Order and mark it as paid. + +**Detailled Use Case** + +This module is usefull for the following use case + +* You have many Sale Orders that have generated pickings. Typically if you have + connected your Odoo instance to an online store like Shop Invader, + Prestashop, Magento, or if you use light Odoo shop (``website_sale`` + module). +* Once the order validated, you prepare your pickings +* The customer come in your shop to recover his order +* the customer add (or remove) some products +* the customer pay his order, based on the real delivered products list diff --git a/pos_picking_load/readme/ROADMAP.rst b/pos_picking_load/readme/ROADMAP.rst new file mode 100644 index 00000000..ff5e888b --- /dev/null +++ b/pos_picking_load/readme/ROADMAP.rst @@ -0,0 +1,8 @@ +* This module will try to get original unit price from the sale order and not + use the Current unit price of the product. + (The price at which you pledged to sell the product). + Some VAT troubles will occure if a product is set with VAT marked as + 'VAT included' and if in the sale order line, there are some VAT marked as + 'VAT excluded' for exemple. + +**The VAT settings should be consistent.** diff --git a/pos_picking_load/readme/USAGE.rst b/pos_picking_load/readme/USAGE.rst new file mode 100644 index 00000000..8d89e6da --- /dev/null +++ b/pos_picking_load/readme/USAGE.rst @@ -0,0 +1,69 @@ +To use this module, you need to: + +* Launch the point of sale +* On a new order (without lines), click on the 'Load Picking' button. + +.. figure:: ../static/description/load_picking_01_load_button.png + :width: 800 px + +* Point of sale will load available pickings. (About displayed pickings, see + 'Technical Notes' section). + +.. figure:: ../static/description/load_picking_02_picking_list.png + :width: 800 px + +* Click on a picking will check if the picking is loadable and if yes, will + display a 'Select' button. (See 'Possible Warnings' Section) + +.. figure:: ../static/description/load_picking_03_confirm.png + :width: 800 px + +* Confirm the selection, by clicking on 'Select' button. It will display + the content of the moves (as PoS Order Lines) + +.. figure:: ../static/description/load_picking_04_pos_order.png + :width: 800 px + +The price and the discount will be the sale price and the discount set in +the according Sale Order Line, if it was found. Otherwise, discount will be +set to 0, and unit price will be the unit price of the product when it has been +loaded in the Point of Sale. + +**Related Sale Order:** + +.. figure:: ../static/description/load_picking_sale_order.png + :width: 800 px + +**Related Picking:** + +.. figure:: ../static/description/load_picking_stock_picking.png + :width: 800 px + + +* Finally, you can add / remove products or change quantity and collect the + payment. + +When, the order is marked as paid, the original picking will be cancelled, +because Point Of Sale generates a new picking related to the real delivered +products and the original Sale Order will pass to the state 'Done'. (Delivery +exception is ignored). +(See 'Technical Notes' section). + +**Possible Warnings** + +Some warning messages can appear: + +* if some products are not available in the Point of Sale + +.. figure:: ../static/description/load_picking_warning_product.png + :width: 800 px + +* if the partner is not available in the Point of Sale + +.. figure:: ../static/description/load_picking_warning_partner.png + :width: 800 px + +* if the picking has been still loaded in another PoS order + +.. figure:: ../static/description/load_picking_warning_picking_still_loaded.png + :width: 800 px diff --git a/pos_picking_load/static/description/index.html b/pos_picking_load/static/description/index.html new file mode 100644 index 00000000..e8d74e26 --- /dev/null +++ b/pos_picking_load/static/description/index.html @@ -0,0 +1,562 @@ + + + + + + +Point Of Sale - Picking Load + + + +
+

Point Of Sale - Picking Load

+ + +

Beta License: AGPL-3 legalsylvain/pos

+

This module extends the functionality of point of sale to allow you to +load your pickings in the Point of Sale, in order to add / remove products +and so create a PoS Order and mark it as paid.

+

Detailled Use Case

+

This module is usefull for the following use case

+
    +
  • You have many Sale Orders that have generated pickings. Typically if you have +connected your Odoo instance to an online store like Shop Invader, +Prestashop, Magento, or if you use light Odoo shop (website_sale +module).
  • +
  • Once the order validated, you prepare your pickings
  • +
  • The customer come in your shop to recover his order
  • +
  • the customer add (or remove) some products
  • +
  • the customer pay his order, based on the real delivered products list
  • +
+

Table of contents

+ +
+

Configuration

+

To configure this module, you need to:

+
    +
  1. Go to Warehouse / Configuration / Types of Operation
  2. +
  3. Select the picking type(s) you want to see in the point of sale
  4. +
  5. Check the box ‘Available in Point of Sale’
  6. +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/stock_picking_type_form.png +
+

Note: This box is NOT enabled by default except in demo data for the type +‘Delivery Orders’ of the demo company ‘YourCompany’.

+
    +
  1. Go to Point of Sale / Configuration / Point of Sales
  2. +
  3. Select the Point(s) of Sales witch those you want to enable the feature
  4. +
  5. Check the box ‘Load Pickings’
  6. +
  7. Set the max quantity of pickings you want to load
  8. +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/pos_config_form.png +
+

Note: This box is enabled by default

+

Technical Notes

+
    +
  • By default, the Point of Sale will display only the pickings if the state is +in ‘Waiting Availability’, ‘Partially Available’ or ‘Ready to Transfer’.
  • +
+

You can change this filter by overloading the _prepare_filter_for_pos +function of the model stock.picking.

+
    +
  • By default, the search of pickings will be done on the fields name, +origin and partner_id of the picking.
  • +
+

You can change this feature by overloading the +_prepare_filter_query_for_pos function of the model stock.picking.

+
    +
  • By default, when the PoS order is confirmed, the original picking is +cancelled and the sale order is set to the state ‘Done’.
  • +
+

You can change this behaviour by overloading +_handle_orders_with_original_picking function of the model pos.order.

+
+
+

Usage

+

To use this module, you need to:

+
    +
  • Launch the point of sale
  • +
  • On a new order (without lines), click on the ‘Load Picking’ button.
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_01_load_button.png +
+
    +
  • Point of sale will load available pickings. (About displayed pickings, see +‘Technical Notes’ section).
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_02_picking_list.png +
+
    +
  • Click on a picking will check if the picking is loadable and if yes, will +display a ‘Select’ button. (See ‘Possible Warnings’ Section)
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_03_confirm.png +
+
    +
  • Confirm the selection, by clicking on ‘Select’ button. It will display +the content of the moves (as PoS Order Lines)
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_04_pos_order.png +
+

The price and the discount will be the sale price and the discount set in +the according Sale Order Line, if it was found. Otherwise, discount will be +set to 0, and unit price will be the unit price of the product when it has been +loaded in the Point of Sale.

+

Related Sale Order:

+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_sale_order.png +
+

Related Picking:

+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_stock_picking.png +
+
    +
  • Finally, you can add / remove products or change quantity and collect the +payment.
  • +
+

When, the order is marked as paid, the original picking will be cancelled, +because Point Of Sale generates a new picking related to the real delivered +products and the original Sale Order will pass to the state ‘Done’. (Delivery +exception is ignored). +(See ‘Technical Notes’ section).

+

Possible Warnings

+

Some warning messages can appear:

+
    +
  • if some products are not available in the Point of Sale
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_product.png +
+
    +
  • if the partner is not available in the Point of Sale
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_partner.png +
+
    +
  • if the picking has been still loaded in another PoS order
  • +
+
+https://raw.githubusercontent.com/legalsylvain/pos/10.0-mig-pos_picking_load/pos_picking_load/static/description/load_picking_warning_picking_still_loaded.png +
+
+
+

Known issues / Roadmap

+
    +
  • This module will try to get original unit price from the sale order and not +use the Current unit price of the product. +(The price at which you pledged to sell the product). +Some VAT troubles will occure if a product is set with VAT marked as +‘VAT included’ and if in the sale order line, there are some VAT marked as +‘VAT excluded’ for exemple.
  • +
+

The VAT settings should be consistent.

+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • GRAP
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

Current maintainer:

+

legalsylvain

+

This module is part of the legalsylvain/pos project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/pos_picking_load/static/description/load_picking_01_load_button.png b/pos_picking_load/static/description/load_picking_01_load_button.png new file mode 100644 index 00000000..3f52aae1 Binary files /dev/null and b/pos_picking_load/static/description/load_picking_01_load_button.png differ diff --git a/pos_picking_load/static/description/load_picking_02_picking_list.png b/pos_picking_load/static/description/load_picking_02_picking_list.png new file mode 100644 index 00000000..d23c63ad Binary files /dev/null and b/pos_picking_load/static/description/load_picking_02_picking_list.png differ diff --git a/pos_picking_load/static/description/load_picking_03_confirm.png b/pos_picking_load/static/description/load_picking_03_confirm.png new file mode 100644 index 00000000..becc45ee Binary files /dev/null and b/pos_picking_load/static/description/load_picking_03_confirm.png differ diff --git a/pos_picking_load/static/description/load_picking_04_pos_order.png b/pos_picking_load/static/description/load_picking_04_pos_order.png new file mode 100644 index 00000000..91e07fca Binary files /dev/null and b/pos_picking_load/static/description/load_picking_04_pos_order.png differ diff --git a/pos_picking_load/static/description/load_picking_sale_order.png b/pos_picking_load/static/description/load_picking_sale_order.png new file mode 100644 index 00000000..e019ede4 Binary files /dev/null and b/pos_picking_load/static/description/load_picking_sale_order.png differ diff --git a/pos_picking_load/static/description/load_picking_stock_picking.png b/pos_picking_load/static/description/load_picking_stock_picking.png new file mode 100644 index 00000000..808a126b Binary files /dev/null and b/pos_picking_load/static/description/load_picking_stock_picking.png differ diff --git a/pos_picking_load/static/description/load_picking_warning_partner.png b/pos_picking_load/static/description/load_picking_warning_partner.png new file mode 100644 index 00000000..61438a38 Binary files /dev/null and b/pos_picking_load/static/description/load_picking_warning_partner.png differ diff --git a/pos_picking_load/static/description/load_picking_warning_picking_still_loaded.png b/pos_picking_load/static/description/load_picking_warning_picking_still_loaded.png new file mode 100644 index 00000000..1a0118c0 Binary files /dev/null and b/pos_picking_load/static/description/load_picking_warning_picking_still_loaded.png differ diff --git a/pos_picking_load/static/description/load_picking_warning_product.png b/pos_picking_load/static/description/load_picking_warning_product.png new file mode 100644 index 00000000..3084d105 Binary files /dev/null and b/pos_picking_load/static/description/load_picking_warning_product.png differ diff --git a/pos_picking_load/static/description/pos_config_form.png b/pos_picking_load/static/description/pos_config_form.png new file mode 100644 index 00000000..42a01b59 Binary files /dev/null and b/pos_picking_load/static/description/pos_config_form.png differ diff --git a/pos_picking_load/static/description/stock_picking_type_form.png b/pos_picking_load/static/description/stock_picking_type_form.png new file mode 100644 index 00000000..f93fbfca Binary files /dev/null and b/pos_picking_load/static/description/stock_picking_type_form.png differ diff --git a/pos_picking_load/static/src/css/pos_picking_load.css b/pos_picking_load/static/src/css/pos_picking_load.css new file mode 100644 index 00000000..afa6e7e5 --- /dev/null +++ b/pos_picking_load/static/src/css/pos_picking_load.css @@ -0,0 +1,50 @@ + +/* LoadPickingScreenWidget - Header Part*/ +.pos .pickinglist-screen .button.picking-button { + width: 150px; +} + +.pos .pickinglist-screen .searchbox{ + top: 4px; + position: relative; +} + +.pos .pickinglist-screen .searchbox input{ + width: 300px; +} + +.pos .pickinglist-screen .button.validate.picking-button{ + right: 0px; +} + +/* LoadPickingScreenWidget - List Part*/ + +.pos .pickinglist-screen .picking-list{ + font-size: 16px; + width: 100%; + line-height: 40px; +} + +.pos .pickinglist-screen .picking-list th, +.pos .pickinglist-screen .picking-list td { + padding: 0px 8px; +} + +.pos .pickinglist-screen .picking-list tbody > tr{ + background: rgb(230,230,230); + cursor: pointer; +} + +.pos .pickinglist-screen .picking-list thead > tr, +.pos .pickinglist-screen .picking-list tr:nth-child(even) { + background: rgb(247,247,247); +} + +.pos .pickinglist-screen .picking-list .highlight { + background-color: rgb(110, 200, 155) !important; + color: rgb(255, 255, 255); +} + +.pos .pickinglist-screen .picking-list tbody > tr:hover { + background: rgb(220,220,220); +} diff --git a/pos_picking_load/static/src/js/model.js b/pos_picking_load/static/src/js/model.js new file mode 100644 index 00000000..228b98df --- /dev/null +++ b/pos_picking_load/static/src/js/model.js @@ -0,0 +1,77 @@ +/** *************************************************************************** + Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) + @author: Sylvain LE GAL (https://twitter.com/legalsylvain) + License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +******************************************************************************/ + +odoo.define('pos_picking_load.model', function (require) { + "use strict"; + + var models = require('point_of_sale.models'); + + /** ********************************************************************** + Extend Model Order: + * Add getter and setter function for field 'origin_picking_id'; + */ + + var moduleOrderParent = models.Order; + models.Order = models.Order.extend({ + + load_from_picking_data: function (picking_data) { + var self = this; + + var partner = this.pos.db.get_partner_by_id( + picking_data.partner_id); + + this.set({ + 'origin_picking_id': picking_data.id, + 'origin_picking_name': picking_data.name, + }); + this.set_client(partner); + + picking_data.line_ids.forEach(function (picking_line_data) { + // Create new line and add it to the current order + var product = self.pos.db.get_product_by_id( + picking_line_data.product_id); + var order_line_data = + self.prepare_order_line_from_picking_line_data( + product, picking_line_data); + self.add_product(product, order_line_data); + }); + }, + + prepare_order_line_from_picking_line_data: function ( + product, picking_line_data) { + return { + quantity: picking_line_data.quantity, + price: picking_line_data.price_unit || product.price, + discount: picking_line_data.discount || 0.0, + }; + }, + + export_for_printing: function () { + var order = moduleOrderParent.prototype.export_for_printing.apply( + this, arguments); + order.origin_picking_name = this.get('origin_picking_name'); + return order; + }, + + export_as_JSON: function () { + var order = moduleOrderParent.prototype.export_as_JSON.apply( + this, arguments); + order.origin_picking_id = this.get('origin_picking_id'); + order.origin_picking_name = this.get('origin_picking_name'); + return order; + }, + + init_from_JSON: function (json) { + moduleOrderParent.prototype.init_from_JSON.apply(this, arguments); + this.set({ + 'origin_picking_id': json.origin_picking_id, + 'origin_picking_name': json.origin_picking_name, + }); + }, + + }); + +}); diff --git a/pos_picking_load/static/src/js/widget.js b/pos_picking_load/static/src/js/widget.js new file mode 100644 index 00000000..4a4ad813 --- /dev/null +++ b/pos_picking_load/static/src/js/widget.js @@ -0,0 +1,320 @@ +/** *************************************************************************** + Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) + @author: Sylvain LE GAL (https://twitter.com/legalsylvain) + License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +******************************************************************************/ + +odoo.define('pos_picking_load.widget', function (require) { + "use strict"; + + var core = require('web.core'); + var framework = require('web.framework'); + var rpc = require('web.rpc'); + + var gui = require('point_of_sale.gui'); + var screens = require('point_of_sale.screens'); + + var QWeb = core.qweb; + var _t = core._t; + + + /** ********************************************************************** + New ScreenWidget LoadPickingScreenWidget: + * On show, display all pickings; + * on click on a picking, display the content; + * on click on 'validate', allow to use this picking; + * on click on 'cancel', display the preview screen; + */ + var LoadPickingScreenWidget = screens.ScreenWidget.extend({ + template: 'LoadPickingScreenWidget', + auto_back: true, + + current_picking_id: false, + current_picking_name: false, + + show: function () { + var self = this; + this._super(); + + this.renderElement(); + + // Bind functions + this.$('.back').click(_.bind(this.clickBackButton, this)); + this.$('.validate').click(_.bind(this.clickValidateButton, this)); + + // Initialize display + this.$('.validate').hide(); + + this.search_pickings(); + + this.$('.picking-list-contents').delegate( + '.picking-line', 'click', function (event) { + self.select_picking(event); + }); + + // Handle search + var search_timeout = null; + this.$('.searchbox input').on('keyup', function () { + clearTimeout(search_timeout); + var query = this.value; + search_timeout = setTimeout(function () { + self.perform_search(query); + }, 70); + }); + + this.$('.searchbox .search-clear').click(function () { + self.clear_search(); + }); + + }, + + select_picking: function (event) { + var origin_picking_id = parseInt( + event.target.parentNode.dataset.pickingId, 10); + var self = this; + this.current_picking_data = false; + this.$('span.button.validate').hide(); + this.$('.picking-list .highlight').removeClass('highlight'); + + framework.blockUI(); + var params = { + model: 'stock.picking', + method: 'load_picking_for_pos', + args: [origin_picking_id], + }; + rpc.query(params) + .then(function (picking_data) { + framework.unblockUI(); + if (self.check_picking(picking_data)) { + self.current_picking_data = picking_data; + $(event.target.parentNode).addClass('highlight'); + self.$('span.button.validate').show(); + } + }).fail(function (error, fail_event) { + framework.unblockUI(); + self.handle_errors(error, fail_event); + }); + }, + + check_picking: function (picking_data) { + var self = this; + + var picking_selectable = true; + + // Forbid POS Order loading if some products are unknown + var unknown_products = []; + + picking_data.line_ids.forEach(function (picking_line_data) { + var line_name = picking_line_data.name.replace('\n', ' '); + var product = self.pos.db.get_product_by_id( + picking_line_data.product_id); + if (_.isUndefined(product)) { + unknown_products.push(line_name); + } + }); + if (unknown_products.length > 0) { + self.gui.show_popup( + 'error-traceback', { + 'title': _t('Unknown Products'), + 'body': _t( + "Unable to load some picking lines because the" + + " products are not available in the POS" + + " cache.\n\n" + + "Please check that lines :\n\n * ") + + unknown_products.join("; \n *"), + }); + picking_selectable = false; + } + + // Check if the partner is unknown + var partner = self.pos.db.get_partner_by_id( + picking_data.partner_id); + + if (_.isUndefined(partner)) { + self.gui.show_popup( + 'error-traceback', { + 'title': _t('Unknown Partner'), + 'body': _t( + "Unable to load this picking because the partner" + + " is not known in the Point Of Sale" + + " as a customer"), + }); + picking_selectable = false; + } + + // Check if the picking is still loaded in another PoS tab + self.pos.db.get_unpaid_orders().forEach(function (order) { + if (order.origin_picking_id === picking_data.id) { + self.gui.show_popup( + 'error-traceback', { + 'title': _t('Picking Still Loaded'), + 'body': _t( + "Unable to load this picking because it has" + + " been loaded in another draft" + + " PoS Order :\n\n") + + order.name, + }); + picking_selectable = false; + } + }); + + // Check if the picking has still been handled in another PoS Order + self.pos.db.get_orders().forEach(function (order) { + if (order.origin_picking_id === picking_data.id) { + self.gui.show_popup( + 'error-traceback', { + 'title': _t('Picking Still Loaded'), + 'body': _t( + "Unable to load this picking because it has" + + " been loaded in another confirmed" + + " PoS Order :\n\n") + + order.name, + }); + picking_selectable = false; + } + }); + return picking_selectable; + }, + + perform_search: function (query) { + this.search_pickings(query); + }, + + clear_search: function () { + this.search_pickings(); + this.$('.searchbox input')[0].value = ''; + this.$('.searchbox input').focus(); + }, + + search_pickings: function (query) { + var self = this; + var params = { + model: 'stock.picking', + method: 'search_pickings_for_pos', + args: [query || '', this.pos.pos_session.id], + }; + rpc.query(params) + .then(function (result) { + self.render_list(result); + }).fail(function (error, event) { + self.handle_errors(error, event); + }); + }, + + render_list: function (pickings) { + var contents = this.$el[0].querySelector('.picking-list-contents'); + contents.innerHTML = ""; + var line_list = document.createDocumentFragment(); + _.each(pickings, function (picking) { + var picking_line_html = QWeb.render( + 'LoadPickingLine', {widget: this, picking:picking}); + var picking_line = document.createElement('tbody'); + picking_line.innerHTML = picking_line_html; + picking_line = picking_line.childNodes[1]; + line_list.appendChild(picking_line); + }); + contents.appendChild(line_list); + }, + + // User Event + clickBackButton: function () { + this.gui.back(); + }, + + clickValidateButton: function () { + var order = this.pos.get_order(); + order.load_from_picking_data(this.current_picking_data); + this.gui.show_screen('products'); + }, + + handle_errors: function (error, event) { + var self = this; + if (parseInt(error.code, 10) === 200) { + // Business Logic Error, not a connection problem + self.gui.show_popup('error-traceback', { + 'title': error.data.message || _t("Server Error"), + 'body': error.data.debug || _t( + "The server encountered an error while" + + " receiving your order."), + }); + } else { + self.gui.show_popup('error', { + 'title': _t('Connection error'), + 'body': _t( + "Can not execute this action because the POS" + + " is currently offline"), + }); + } + event.preventDefault(); + }, + }); + + gui.define_screen({ + 'name': 'load_picking', + 'widget': LoadPickingScreenWidget, + 'condition': function () { + return this.pos.config.iface_load_picking; + }, + }); + + + /** ********************************************************************** + New Widget LoadPickingButtonWidget: + * On click, display a new screen to select a picking; + */ + var LoadPickingButtonWidget = screens.ActionButtonWidget.extend({ + template: 'LoadPickingButtonWidget', + + button_click: function () { + if (_.isUndefined(this.pos.get_order().get('origin_picking_id'))) { + this.gui.show_screen('load_picking'); + } else { + this.gui.show_popup('error', { + 'title': _t('Pending Picking'), + 'body': _t( + "A picking is still loaded. You can not load" + + " another picking. Please create a new order."), + }); + } + }, + + button_text: function () { + if (! this.pos.get_order() || + _.isUndefined( + this.pos.get_order().get('origin_picking_id'))) { + return _t("Load Picking"); + } + return this.pos.get_order().get('origin_picking_name'); + }, + + is_visible: function () { + if (this.pos.get_order()) { + return ( + this.pos.get_order().get_orderlines().length === 0 || + ! _.isUndefined( + this.pos.get_order().get('origin_picking_id'))); + } + return false; + }, + + }); + + screens.define_action_button({ + 'name': 'load_picking', + 'widget': LoadPickingButtonWidget, + 'condition': function () { + return this.pos.config.iface_load_picking; + }, + }); + + screens.OrderWidget.include({ + update_summary: function () { + this._super(); + if (this.getParent().action_buttons && + this.getParent().action_buttons.load_picking) { + this.getParent().action_buttons.load_picking.renderElement(); + } + }, + }); + +}); diff --git a/pos_picking_load/static/src/xml/pos_picking_load.xml b/pos_picking_load/static/src/xml/pos_picking_load.xml new file mode 100644 index 00000000..da4c1368 --- /dev/null +++ b/pos_picking_load/static/src/xml/pos_picking_load.xml @@ -0,0 +1,85 @@ + + diff --git a/pos_picking_load/tests/__init__.py b/pos_picking_load/tests/__init__.py new file mode 100644 index 00000000..9ed7fe2a --- /dev/null +++ b/pos_picking_load/tests/__init__.py @@ -0,0 +1 @@ +from . import test_pos_picking_load diff --git a/pos_picking_load/tests/test_pos_picking_load.py b/pos_picking_load/tests/test_pos_picking_load.py new file mode 100644 index 00000000..131a3ae3 --- /dev/null +++ b/pos_picking_load/tests/test_pos_picking_load.py @@ -0,0 +1,85 @@ +# Copyright (C) 2017: Opener B.V. (https://opener.amsterdam) +# @author: Stefan Rijnhart +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import fields +from odoo.tests.common import TransactionCase + + +class TestPosPickingLoad(TransactionCase): + + def test_pos_picking_load(self): + product = self.env.ref('product.product_product_24') + pricelist = self.env.ref('product.list0') + # Create a Sale order and confirm it to generate a picking to load + sale_order = self.env['sale.order'].create({ + 'partner_id': self.env.ref('base.res_partner_1').id, + 'order_line': [(0, 0, { + 'product_id': product.id, + 'price_unit': 6, + 'product_uom_qty': 2, + 'qty_delivered_method': 'stock_move', + })], + }) + sale_order.action_confirm() + sale_order.picking_ids.picking_type_id.write({ + 'available_in_pos': True}) + + # Configure Point of sale + config = self.env.ref('point_of_sale.pos_config_main').copy() + config.write({ + 'picking_type_id': sale_order.picking_ids.picking_type_id.id}) + + # Open a new session + config.open_session_cb() + session = self.env['pos.session'].search([ + ('config_id', '=', config.id)])[0] + date_now = fields.Datetime.now() + + # Create a pos order + self.env['pos.order'].create_from_ui([{ + 'to_invoice': False, + 'data': { + 'pricelist_id': pricelist.id, + 'user_id': self.env.user.id, + 'creation_date': date_now, + 'fiscal_position_id': False, + 'name': 'Order 00017-002-0003', + 'partner_id': sale_order.partner_id.id, + 'amount_paid': 12, + 'pos_session_id': session.id, + 'lines': [[0, 0, { + 'product_id': product.id, + 'price_unit': 6, + 'name': product.name, + 'discount': 0, + 'qty': 2, + 'price_subtotal': 12, + 'price_subtotal_incl': 12, + 'tax_ids': [[6, False, []]], + }]], + 'statement_ids': [[0, 0, { + 'journal_id': False, + 'amount': 12, + 'name': date_now, + 'account_id': config.journal_ids[ + 0].default_debit_account_id.id, + 'statement_id': session.statement_ids[0].id, + }]], + 'amount_tax': 0, + 'origin_picking_id': sale_order.picking_ids.id, + 'uid': '00017-002-0003', + 'amount_return': 0, + 'sequence_number': 3, + 'amount_total': 12, + }, + 'id': '00017-002-0003', + }]) + pos_order = self.env['pos.order'].search( + [('origin_picking_id', 'in', sale_order.picking_ids.ids)]) + self.assertTrue(pos_order) + self.assertEqual(pos_order.origin_picking_id.state, 'cancel') + self.assertEqual( + pos_order.picking_id.group_id, + pos_order.origin_picking_id.group_id) + self.assertEqual( + sale_order.invoice_status, 'invoiced') diff --git a/pos_picking_load/views/pos_picking_load.xml b/pos_picking_load/views/pos_picking_load.xml new file mode 100644 index 00000000..f32e7311 --- /dev/null +++ b/pos_picking_load/views/pos_picking_load.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/pos_picking_load/views/view_pos_config.xml b/pos_picking_load/views/view_pos_config.xml new file mode 100644 index 00000000..8cc7a0fd --- /dev/null +++ b/pos_picking_load/views/view_pos_config.xml @@ -0,0 +1,35 @@ + + + + + + pos.config + + + + +

Picking Load

+
+
+
+ +
+
+
+
+
+
+
+
+ +
diff --git a/pos_picking_load/views/view_sale_order.xml b/pos_picking_load/views/view_sale_order.xml new file mode 100644 index 00000000..9f84f988 --- /dev/null +++ b/pos_picking_load/views/view_sale_order.xml @@ -0,0 +1,15 @@ + + + + + + sale.order + + + + + + + + + diff --git a/pos_picking_load/views/view_stock_picking.xml b/pos_picking_load/views/view_stock_picking.xml new file mode 100644 index 00000000..34d7baa4 --- /dev/null +++ b/pos_picking_load/views/view_stock_picking.xml @@ -0,0 +1,15 @@ + + + + + + stock.picking + + + + + + + + + diff --git a/pos_picking_load/views/view_stock_picking_type.xml b/pos_picking_load/views/view_stock_picking_type.xml new file mode 100644 index 00000000..7d5380cb --- /dev/null +++ b/pos_picking_load/views/view_stock_picking_type.xml @@ -0,0 +1,15 @@ + + + + + + stock.picking.type + + + + + + + + + diff --git a/pos_picking_load_partner_name/README.rst b/pos_picking_load_partner_name/README.rst new file mode 100644 index 00000000..24c9c71e --- /dev/null +++ b/pos_picking_load_partner_name/README.rst @@ -0,0 +1,64 @@ +======================================================= +Point of Sale - Load Picking by Partner Name improvment +======================================================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-grap%2Fgrap--odoo--incubator-lightgray.png?logo=github + :target: https://github.com/grap/grap-odoo-incubator/tree/8.0/pos_picking_load_partner_name + :alt: grap/grap-odoo-incubator + +|badge1| |badge2| |badge3| + +This module extends the functionality of PoS Picking Load module to improve +the loading time during the picking load. + +for that purpose, its store partner name on each picking and search on that +new field, instead of making a search on partner_id field. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* GRAP + +Contributors +~~~~~~~~~~~~ + +* Sylvain LE GAL + +Maintainers +~~~~~~~~~~~ + + + +This module is part of the `grap/grap-odoo-incubator `_ project on GitHub. + + +You are welcome to contribute. diff --git a/pos_picking_load_partner_name/__init__.py b/pos_picking_load_partner_name/__init__.py new file mode 100644 index 00000000..78588335 --- /dev/null +++ b/pos_picking_load_partner_name/__init__.py @@ -0,0 +1,3 @@ +from . import models + +from .hooks import pre_init_hook diff --git a/pos_picking_load_partner_name/__manifest__.py b/pos_picking_load_partner_name/__manifest__.py new file mode 100644 index 00000000..1092c209 --- /dev/null +++ b/pos_picking_load_partner_name/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright (C) 2018 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + 'name': 'Point of Sale - Load Picking by Partner Name improvment', + 'summary': "Improve load of picking in PoS by partner name", + 'version': '12.0.1.0.0', + 'category': 'Point of Sale', + 'author': 'GRAP,Odoo Community Association (OCA)', + 'website': 'http://www.github.com/OCA/pos', + 'license': 'AGPL-3', + 'maintainers': ['legalsylvain'], + 'development_status': 'Beta', + 'depends': [ + 'pos_picking_load', + ], + 'pre_init_hook': 'pre_init_hook', + 'installable': True, +} diff --git a/pos_picking_load_partner_name/hooks.py b/pos_picking_load_partner_name/hooks.py new file mode 100644 index 00000000..13a3ca0f --- /dev/null +++ b/pos_picking_load_partner_name/hooks.py @@ -0,0 +1,26 @@ +# Copyright (C) 2018 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import logging + +_logger = logging.getLogger(__name__) + + +def _create_column(cr, table_name, column_name, column_type): + # pylint: disable=sql-injection + req = "ALTER TABLE %s ADD COLUMN %s %s" % ( + table_name, column_name, column_type) + cr.execute(req) + + +def pre_init_hook(cr): + _logger.info( + "Compute stock_picking.partner_name for existing pickings") + _create_column(cr, 'stock_picking', 'partner_name', 'VARCHAR') + cr.execute(""" + UPDATE stock_picking sp + SET partner_name = rp.name + FROM res_partner rp + WHERE sp.partner_id = rp.id; + """) diff --git a/pos_picking_load_partner_name/i18n/fr.po b/pos_picking_load_partner_name/i18n/fr.po new file mode 100644 index 00000000..2fcfd741 --- /dev/null +++ b/pos_picking_load_partner_name/i18n/fr.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load_partner_name +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-07-11 09:51+0000\n" +"PO-Revision-Date: 2019-07-11 09:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_picking_load_partner_name +#: model:ir.model.fields,field_description:pos_picking_load_partner_name.field_stock_picking__partner_name +msgid "Name" +msgstr "Nom" + +#. module: pos_picking_load_partner_name +#: model:ir.model,name:pos_picking_load_partner_name.model_stock_picking +msgid "Transfer" +msgstr "Transfert" + diff --git a/pos_picking_load_partner_name/i18n/pos_picking_load_partner_name.pot b/pos_picking_load_partner_name/i18n/pos_picking_load_partner_name.pot new file mode 100644 index 00000000..4ab33ec9 --- /dev/null +++ b/pos_picking_load_partner_name/i18n/pos_picking_load_partner_name.pot @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_picking_load_partner_name +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-07-11 09:50+0000\n" +"PO-Revision-Date: 2019-07-11 09:50+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_picking_load_partner_name +#: model:ir.model.fields,field_description:pos_picking_load_partner_name.field_stock_picking__partner_name +msgid "Name" +msgstr "" + +#. module: pos_picking_load_partner_name +#: model:ir.model,name:pos_picking_load_partner_name.model_stock_picking +msgid "Transfer" +msgstr "" + diff --git a/pos_picking_load_partner_name/models/__init__.py b/pos_picking_load_partner_name/models/__init__.py new file mode 100644 index 00000000..ae4c2722 --- /dev/null +++ b/pos_picking_load_partner_name/models/__init__.py @@ -0,0 +1 @@ +from . import stock_picking diff --git a/pos_picking_load_partner_name/models/stock_picking.py b/pos_picking_load_partner_name/models/stock_picking.py new file mode 100644 index 00000000..8e0942c9 --- /dev/null +++ b/pos_picking_load_partner_name/models/stock_picking.py @@ -0,0 +1,24 @@ +# Copyright (C) 2018 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class StockPicking(models.Model): + _inherit = 'stock.picking' + + # Columns section + partner_name = fields.Char( + related='partner_id.name', store=True) + + @api.model + def _prepare_filter_query_for_pos(self, pos_session_id, query): + # Overwrite original function, replacing + # partner_id field by partner_name + return [ + '|', '|', + ('name', 'ilike', query), + ('origin', 'ilike', query), + ('partner_name', 'ilike', query), + ] diff --git a/pos_picking_load_partner_name/readme/CONTRIBUTORS.rst b/pos_picking_load_partner_name/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..9f76a75b --- /dev/null +++ b/pos_picking_load_partner_name/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Sylvain LE GAL diff --git a/pos_picking_load_partner_name/readme/DESCRIPTION.rst b/pos_picking_load_partner_name/readme/DESCRIPTION.rst new file mode 100644 index 00000000..6bbb09e9 --- /dev/null +++ b/pos_picking_load_partner_name/readme/DESCRIPTION.rst @@ -0,0 +1,5 @@ +This module extends the functionality of PoS Picking Load module to improve +the loading time during the picking load. + +For that purpose, its store partner name on each picking and search on that +new field, instead of making a search on partner_id field.